body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #FEFEFE;
    flex-direction: column; /* Stack elements vertically */
}

h1, h3 {
    color: #252322;
    font-weight: bold; /* Make header text bold */
}

h2 {
    color: #524C4D;
}

hr {
    color: #A0A0A0;
    border: none;
    border-top: 6px dashed;
    margin: 20px 0;
}

.header .logo {
    width: 150px; /* Adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
}

.container {
    text-align: center;
}

@media only screen and (max-width: 600px) { /* Adjust the max-width as needed */
    #imageContainer img {
        max-width: 80%; /* Reduce the size on smaller screens */
        height: auto; /* Maintains the aspect ratio */
        object-fit: contain; /* Ensures the image is fully visible */
    }
}

@media only screen and (max-width: 600px) {
    #textInput, #generateButton {
        font-size: 16px; /* Prevents zooming on mobile devices */
        /* Other styles if needed */
    }
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    display: none; /* Hidden by default */
}

.disabled {
    pointer-events: none; /* Disables clicking */
    opacity: 0.5; /* Grays out the element */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#textInput {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px; /* Adjust font size as needed */
    border: 1px solid #ccc; /* Example border */
    border-radius: 4px; /* Rounded corners */
}

#styleOptions {
    text-align: left;
    display: inline-block; /* or 'block' depending on layout */
    width: 100%; /* Adjust the width as needed */
    margin: 10px 0;
    padding-left: 40px; /* Adjust this value as needed to move the buttons to the right */
}

#styleOptions input[type="radio"] {
    margin-right: 5px;
    /* Add more styling as needed */
}

#styleOptions label {
    margin-right: 15px;
    /* Add more styling as needed */
}

#generateButton {
    padding: 10px 20px;
}

#imageContainer {
    margin-top: 20px;
}

.chat-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background: #f9f9f9;
    height: 400px;
    overflow-y: scroll;
}

.messages {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.input-group {
    width: 100%;
}
