    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');

    body,
    html {
        background-color: white;
        background-image: url();
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .fab {
        font-size: 20px;
    }

    header div #conversational-form {
        margin: 0 !important;
    }

    .brand-instagram {
        background: #52c9b5;
    }

    .content {
        font-size: 60px;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        color: white;
        text-shadow: 0 0 10px #0000008c;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .content span {
        color: #c90057;
        text-shadow: none;
        font-size: 80px;
        margin-left: 10px;
        font-weight: 800;
    }

    [type=submit]:not(:disabled),
    button:not(:disabled) {
        cursor: pointer;
        padding: 10px;
        font-size: larger;
    }

    .font-size-0--875 {
        font-size: 0.875rem;
    }

    .font-size-1--375 {
        font-size: 1.375rem;
    }

    .cb {
        color: black;
    }

    a {
        color: #c90057;
        text-decoration: none;
        background-color: transparent;
    }

    .font-size-0--875 {
        font-size: 0.875rem;
    }

    .font-size-1 {
        font-size: 1rem;
    }

    .social-circle-hover-box img {
        width: 2.3125rem;
        height: 2.3125rem;
    }

    .brand-section-separator {
        background: #fff;
        padding: 0 .75rem;
        display: inline-block;
        position: relative;
    }

    .separator {
        padding: 2rem 0 !important;
    }

    .separator:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: #aab2c1;
        top: 50%;
        left: 0;
        z-index: 0;
    }

    .zoom img {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .zoom:hover img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    .font-weight-700 {
        font-weight: 700;
    }

    @media only screen and (max-width: 600px) {
        .body {
            width: 80%;
        }
    }

    ::placeholder {
        opacity: 0.6 !important;
        color: black !important;
        font-weight: 500;
    }

    .hide {
        display: none !important;
    }

    .iti {
        width: 100%;
    }

    #error-msg,
    #valid-msg {
        display: block;
        position: absolute;
        right: 0%;
        top: 50%;
        transform: translate(100%, -50%);
        line-height: 1;
    }

    #error-msg {
        color: red;
    }

    #valid-msg {
        color: #c90057;
    }

    .main-app-color {
        color: #C90057;
    }

    .main-app-bg {
        background-color: #C90057;
    }

    /* .chat */
    .chat {
        color: #fff;
        width: 650px;
        margin: 0 auto;
        background: #242424;
        border-radius: 0px;
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    }

    /* .chat-header */
    .chat-header {
        background: #333333;
        padding: 20px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    .chat-header h1 {
        color: #fff;
        text-align: center;
    }

    /* .chat-history */
    .chat-history {
        color: #fff;
        height: 350px;
        overflow-y: auto;
        padding: 20px;
    }

    /* .chat-item */
    .chat-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .chat-item img {
        width: 36px;
    }

    /* .chat-item-me */
    .chat-item-me .message {
        margin-left: 15px;
        background: #333;
        border-radius: 15px !important;
    }

    .chat-item-me .message::before {
        right: 100%;
        border: solid transparent;
        border-right-color: #333;
        content: '';
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-width: 10px;
        top: 10px;
    }

    /* .chat-item-other */
    .chat-item-other .message {
        margin-right: 15px;
        background: #f1f2f2;
    }

    .chat-item-other {
        float: right !important;
        clear: both;
    }

    .chat-item-buttons {
        align-items: center !important;
        clear: both;
    }

    .chat-item-other .message::after {
        left: 100%;
        border: solid transparent;
        border-left-color: #f1f2f2;
        content: '';
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-width: 10px;
        top: 10px;
    }

    /* .message */
    .message {
        padding: 10px;
        border-radius: 0px;
        position: relative;
    }

    /* .message-user-name */
    .message-user-name {
        font-size: 12px;
        font-weight: 600;
        color: #000;
    }

    .message-user-name a {
        color: #C90057;
        text-decoration: none;
    }

    /* .message-time, .message-votes */
    .message-time,
    .message-votes {
        font-size: 11px;
        color: #999;
    }

    /* .message-text */
    .message-text {
        font-size: 13px;
        color: #000000;
    }

    /* .btns-row */
    .btns-row {
        margin-top: 5px;
    }

    /* .chat-controls */
    .chat-controls {
        margin-top: 10px;
        border-top: 1px solid #333;
        padding: 5px 10px 0px 10px;
        background-color: #333;
    }

    /* .chat-controls-input */
    .chat-controls-input {
        width: calc(100% - 40px);
        border: none;
        padding: 15px 5px;
        border-radius: 0px;
        color: #fff;
        margin-bottom: 5px;
    }

    .btn-h {
        height: 2.8vw !important;
    }

    /* Scrollbar styles */
    ::-webkit-scrollbar {
        width: 5px;
    }

    ::-webkit-scrollbar-track {
        border-radius: 0;
        box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
    }

    ::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(0, 0, 0, 0.3);
    }

    .btn-default {
        color: #fff;
        background-color: #c90057;
        /* RGB(201, 0, 87) color */
        border-color: #c90057;
        /* RGB(201, 0, 87) color */
    }

    .btn-default:hover {
        color: #fff;
        background-color: #a7004d;
        /* Darker shade of the main color for hover */
        border-color: #9a0048;
        /* Darker shade of the main color for hover */
    }

    .btn-default.focus,
    .btn-default:focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(201, 0, 87, .5);
        box-shadow: 0 0 0 .2rem rgba(201, 0, 87, .5);
    }

    .btn-default.disabled,
    .btn-default:disabled {
        color: #fff;
        background-color: #c90057;
        /* RGB(201, 0, 87) color */
        border-color: #c90057;
        /* RGB(201, 0, 87) color */
    }

    .btn-default:not(:disabled):not(.disabled).active,
    .btn-default:not(:disabled):not(.disabled):active,
    .show>.btn-default.dropdown-toggle {
        color: #fff;
        background-color: #9a0048;
        /* Darker shade of the main color for active state */
        border-color: #910043;
        /* Darker shade of the main color for active state */
    }

    .btn-default:not(:disabled):not(.disabled).active:focus,
    .btn-default:not(:disabled):not(.disabled):active:focus,
    .show>.btn-default.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 .2rem rgba(201, 0, 87, .5);
        box-shadow: 0 0 0 .2rem rgba(201, 0, 87, .5);
    }

    .fs-5 {
        font-size: small;
    }

    .fs-6 {
        font-size: 10px;
    }

    .fs-4 {
        font-size: 16px;
    }

    .fs-3 {
        font-size: 18px;
    }

    .chat-audio {
        height: 40px;
        /* Adjust the height as needed */
    }

    .chat-controls-textarea {
        width: calc(100% - 40px);
        border: none;
        padding: 10px;
        border-radius: 0;
        resize: none;
        outline: none;
        background-color: #333;
        /* Replace with your desired dark gray color code */
        color: #fff;
        font-family: 'Poppins', sans-serif;
        /* Replace with your desired font */
    }

    .chat-controls-textarea::placeholder {
        color: #999 !important;
        /* Replace with your desired placeholder color */
    }


    .chat-controls-btn.btn {
        padding: 0 10px;
        background: #c90057;
        /* Replace with your desired orange color */
        line-height: 35px;
        display: inline-block;
        color: #fff;
        text-decoration: none;
        border-radius: 0;
        position: relative;
        top: -15px;
        left: 2px;
    }

    .disabled-label {
        pointer-events: none;
        background-color: #96204B !important;
        /* Optional: Change the color to indicate it's disabled */
        color: #B8B8B8;
        /* You can also use other styles like text-decoration to make it look disabled */
    }

    /*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/
    .modal.left .modal-dialog,
    .modal.right .modal-dialog {
        position: fixed;
        margin: auto;
        width: 100% !important;
        height: 100%;
        -webkit-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
        -o-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }

    .modal.left .modal-content,
    .modal.right .modal-content {
        height: 100%;
        overflow-y: auto;
    }

    .modal.left .modal-body,
    .modal.right .modal-body {
        padding: 15px 15px 80px;
    }

    /*Left*/
    .modal.left.fade .modal-dialog {
        left: 0px;
        -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
        -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
        -o-transition: opacity 0.3s linear, left 0.3s ease-out;
        transition: opacity 0.3s linear, left 0.3s ease-out;
    }

    .modal.left.fade.in .modal-dialog {
        left: 0;
    }

    /*Right*/
    .modal.right.fade .modal-dialog {
        right: 0px;
        -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
        -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
        -o-transition: opacity 0.3s linear, right 0.3s ease-out;
        transition: opacity 0.3s linear, right 0.3s ease-out;
    }

    .modal.right.fade.in .modal-dialog {
        right: 0;
    }

    .product-card {
        border: 1px solid rgb(201, 0, 87);
        width: 150px;
        height: 200px; /* Fixed card height */
        padding: 5px;
        text-align: center;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }

    .product-image {
        width: 100% !important; /* Image width set to 100% of the card */
        height: 100%;
        object-fit: cover; /* Maintain aspect ratio while covering the card */
    }

    .product-title {
        font-size: 14px;
        font-weight: bold;
        margin: 5px 0;
        color: rgb(201, 0, 87);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-quantity {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
    }

    .quantity-button {
        font-size: 18px;
        padding: 5px 10px;
        background-color: rgb(201, 0, 87);
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .quantity-value {
        font-size: 18px;
        margin: 0 10px;
    }

    .product-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }

    .product-table th, .product-table td {
        /* border: 1px solid rgb(201, 0, 87); */
        padding: 8px;
        text-align: center;
        vertical-align: middle; 
    }

    .product-table th {
        background-color: rgb(201, 0, 87);
        color: #fff;
    }

    .product-image-2 {
        width: 100% !important;
        max-width: 100px;
    }

    .quantity-button-2 {
        font-size: 12px;
        padding: 3px 5px;
        background-color: rgb(201, 0, 87);
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .product-card-2 {
        /* border: 1px solid rgb(201, 0, 87); */
        width: 150px;
        padding: 5px;
        text-align: center;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }