@font-face {
    font-family: 'Voces';
    src: url('Voces-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Voces', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000000;
}

shader-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.side-container {
    width: calc(50vw - 210px);
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
}

.left-side {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.right-side {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.chat-container {
    width: 420px;
    height: 100vh;
    border: 1px solid #000000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    z-index: 1;
}

.logo-container {
    height: 120px;
    background: linear-gradient(to right, #183650, #a5a5a5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-height: 80%;
    max-width: 100%;
    object-fit: contain;
}

.chat-box {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #000000;
    background: linear-gradient(to right, #183650, #a5a5a5);
    margin-top: auto;
}

.chat-input input {
    background-color: #2b2b2b;
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    color: white;
    font-size: 16px;
}

.chat-input button {
    padding: 0 20px;
    margin-left: 10px;
    border: none;
    background-color: #183650;
    color: white;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
}

.chat-input button i {
    font-size: 20px;
    margin: 0;
}

.message {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 75%;
    margin-bottom: 10px;
}

.user-message {
    background: #183650;
    align-self: flex-end;
    color: white;
    border-radius: 15px 15px 0px 15px;
    margin-left: auto;
}

.bot-message-container {
    display: flex;
    align-items: flex-start;
    max-width: 75%;
    margin-bottom: 10px;
    padding-left: 0;
    margin-left: 0;
}

.bot-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid #ffffff;
    align-self: flex-start;
    margin-top: 0;
}

.bot-message {
    background: #2b2b2b;
    color: white;
    padding: 10px 15px;
    border-radius: 15px 15px 15px 0px;
    max-width: calc(100% - 50px);
    margin-top: 0;
}

.bot-message .MathJax {
    font-size: 90%;
    line-height: 1.5;
}

.dg.ac {
    display: none;
}

.chat-footer {
    background-color: #f0f0f0;
    padding: 8px;
    text-align: center;
    margin-top: auto;
}

.chat-footer p {
    margin: 0;
    font-size: 12px;
    color: #000000;
}

.chat-footer a {
    color: #183650;
    text-decoration: underline;
}

.disclaimer-header,
.terms-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
    position: relative;
}

.business-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #183650;
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.business-name {
    font-size: 48px;
    font-weight: bold;
    color: #183650;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow:
        -1px -1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px 1px 0 #ffffff,
        1px 1px 0 #ffffff,
        -1px 0px 0 #ffffff,
        1px 0px 0 #ffffff,
        0px -1px 0 #ffffff,
        0px 1px 0 #ffffff;
}

.terms-and-conditions {
    font-size: 28px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    margin: 0;
    flex-grow: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.terms-container {
    margin-top: 10px;
    font-size: 14px;
    color: rgb(0, 0, 0);
    text-align: center;
}

.terms-container a {
    color: #183650;
    text-decoration: underline;
}

.hidden {
    display: none;
}

.disclaimer-box,
.terms-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(194, 194, 194, 0.9);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 350px;
    border-radius: 10px;
    z-index: 1000;
    text-align: left;
    color: rgb(0, 0, 0);
}

.divider {
    width: 100%;
    height: 2px;
    background-color: rgb(0, 0, 0);
    margin: 10px 0;
    border: none;
}

.disclaimer-text,
.terms-text {
    text-align: justify;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.accept-button,
.back-button {
    margin-top: 10px;
    background: #183650;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.accept-button:hover,
.back-button:hover {
    background: #0d2438;
}

input[type="checkbox"] {
    accent-color: #183650;
    transform: scale(1.5);
}

.terms-content {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 250px;
    padding-right: 10px;
}

.terms-content::-webkit-scrollbar {
    width: 6px;
}

.terms-content::-webkit-scrollbar-thumb {
    background-color: #004a77;
    border-radius: 4px;
}

.terms-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.disclaimer-text a {
    color: #a5a5a5;
    text-decoration: underline;
}

.disclaimer-text a[href="https://meslattcom.com"] {
    color: #a5a5a5;
}