body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: black;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://channel.mediacdn.vn/428462621602512896/2023/8/8/huflitclean-16914696561351904203768.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-height: 100vh;
}

input[type="text"] {
    width: 96%;
}

/* Media Query for Larger Screens */
@media screen and (min-width: 1200px) {
    #chat-container {
        width: 70%;
    }
}

.message {
    margin-bottom: 10px;
}

.user-message {
    font-weight: bold;
    color: black;
}

.bot-message {
    color: black;
}

input[type="text"] {
    width: 98%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.greeting-message {
    background-color: #ee6823;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    color: white;
}

/* Media Query for Tablets and Mobiles */
@media screen and (max-width: 768px) {
    #chat-container {
        width: 98%;
    }
}

#chat-container {
    max-width: 90%;
    width: 900px;
    max-height: 90vh;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

#messages {
    flex: 1;
    overflow: auto;
    margin-bottom: 20px;
    max-height: 70vh;
}

#messages hr {
    border: 0;
    height: 3px;
    background-color: #ee6823;
    margin: 10px 0;
}

#button-wrapper button {
    width: 33%;         /* Each button will take up one-third of the container width */
    padding: 10px 0;    /* Add padding for better visual appeal */
    margin: 0;          /* Reset any default margins */
    background-color: #17479d; /* Example background color */
    color: white;       /* Text color */
    border: none;       /* No borders */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;    /* Change mouse cursor to pointer on hover */
    font-size: 1em;     /* Set font size */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}


#button-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

#button-wrapper button:hover {
    background-color: #588eee;
}
/* Make sure to add styles for disabled state if needed */
#button-wrapper button:disabled {
    background-color: #ccc; /* Gray out the button when it's disabled */
    cursor: default;        /* Reset cursor */
}
#star-rating .star {
    font-size: 50px;
    color: lightgray;
    cursor: pointer;
}

#star-rating .star.selected {
    color: gold;
}

