.chatIndexLayout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/*---- chat 영역 ----*/
.chatWelcomeMessage {
    color: var(--blue2);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    padding: 0 12px;
    margin-top: auto;
    margin-bottom: 15px;
    width: fit-content;
}

.chatWelcomeMessage-2 {
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    padding: 0 12px;
    /* margin-top: auto; */
    margin-bottom: 54px;
    width: fit-content;
}

.chatExampleList {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 10%;
    margin-bottom: 150px;
    width: fit-content;
}

.chatExampleDescription {
    font-size: 14px;
    padding-left: 12px;
    color: var(--grey3);
}

.chatExample {
    height: auto;
    min-height: 36px;
    padding: 6px 12px;
    background-color: white;
    border-radius: var(--borderRadiusBtnSmall);
    border: 1px solid var(--grey3);
    text-align: left;
    font-size: 14px;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    color: var(--black);
}

.chatExample:hover {
    background-color: var(--btnHover);
}

.chatWelcomeMessage-2 .highlight-text {
    color: var(--blue2);
    font-weight: 500;
}