* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to right, #6a11cb, #2575fc); /* Background gradient */
}

.contain {
    width: 85%;
    margin: 90px auto 20px;
}

.cover {
    border-radius: 10px;
    width: 85%;
    padding: 20px 10px;
    margin: 20px 0px;
}

.cover-text {
    font-size: 18px;
    margin: 20px 10px;
    text-align: center;
}

.contents {
    flex-basis: 48%;
    font-size: 12px;
    background-color: #e9f5ff;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.response-text {
    word-break: break-word;
    overflow-wrap: break-word;
}

.home-cover {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin: 10px auto;
}

 .inner-home-cover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    margin-left: auto;
    margin-right: 0;
}

.order-btn {
    flex: 1;
    text-align: center;
    margin: 0 5px;
}


/*.inner-home-cover {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    text-align: right;*/
/*    width: 50%;*/
/*}*/

/*.inner-home-cover p {*/
/*    margin: 5px;*/
/*}*/

.home-text {
    padding: 5px 10px;
}

/*.order-btn {*/
/*    background-color: #333;*/
/*    color: white;*/
/*    padding: 5px 10px;*/
/*    margin: 0px 5px;*/
/*    border: none;*/
/*    border-radius: 5px;*/
/*    cursor: pointer;*/
/*    text-align: center;*/
/*    transition: background-color 0.2s ease-in-out;*/
/*}*/

/*.order-btn a {*/
/*    color: white;*/
/*    margin: 0px 5px;*/
/*}*/



.chat-input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
}

.chat-input-container {
    right: 15%;
}

.chat-input-container button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.chat-input-container button:hover {
    background-color: #004999;
}

.form {
    margin-bottom: 0;
    width: 100%;
    z-index: 2;
}

.inner-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.form input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 10px;
}

.form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form input[type="text"] {
    width: 90%;
}

.form select {
    width: 90%;
}

.feedback-buttons {
    display: flex;
    margin: 10px 40px;
}

.feedback-buttons a {
    margin: 0 10px;
    font-size: 20px;
}

.copy-btn {
    border: none;
    margin: 0 10px;
    font-size: 20px;
}

.message .feedback-icons {
    display: flex;
    gap: 10px;
}

.message .feedback-icons i {
    cursor: pointer;
}

.message .feedback-icons i:hover {
    color: #0066cc;
}

.message {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.user-prompt {
    display: flex;
    justify-content: flex-end;
    margin: 10px 0 30px 10px;
}

.prompt-text {
    margin-top: 5px;
}

.text-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 30px;
    max-height: 30px;
    padding: 10px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    margin-left: 10px;
}

.model-response {
    display: flex;
    justify-content: flex-start;
    margin: 10px 0;
}

.logo1 {
    max-width: 30px;
    max-height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.total-label {
    display: none;
}

.value {
    color: white; /* Change color as needed */
    padding: 2px 5px;
    font-size: 11px;
}


@media (min-width: 769px) {
    .total-label {
        display: inline; /* Display the text
    }

    .contain {
        width: 70%;
        margin: 90px auto 20px;
    }

    .inner-home-cover {
    width: 30%;

    }

    .fixed-bottom-right {
        position: fixed;
        bottom: 140px;
        right: 33%;
        text-align: center;
    }

    .cover {
        width: 100%;
        margin: 150px 0px 0px;
    }

    .chat-input-container {
        right: 15%;
        left: 15%;
    }

    .form input[type="text"] {
        width: 90%;
    }

    .form select {
        width: 90%;
    }
}

/* Commented out styles */
/* .contain h5 {
    margin: 20px 0;
} */
