
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #121314;
        }
        .chat-body::-webkit-scrollbar-thumb {
    background-color: #1b1f23;
}

/* Set the color of the scrollbar track */
.chat-body::-webkit-scrollbar-track {
    background-color: #1b1f23;
}
        .modal {
    display: none;
    position: absolute;
    background-color: #1b1f23;
    color: white;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 0 6px rgb(255 238 238);
    z-index: 1;
}

/* Adjust the position of the modal based on the button's position */
.modal-content {
    position: relative;
}

/* Adjust the position of the modal based on the button's position */
.modal:before {
    content: '';
    position: absolute;
    top: -10px; /* Adjust as needed */
    left: 50%; /* Adjust as needed */
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fefefe transparent;
}

        .container {
            display: flex;
            justify-content: space-between; /* Adjust alignment of chat and gallery */
            max-width: 900px; /* Adjust as needed */
            margin: 50px auto;
           
        }
        .chat-container {
            flex: 1;
            background-color: #121314;
            border-radius: 10px;
            box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
        }
        .chat-header {
            background-color: #121314;
            color: #2a9b59;
            padding: 1px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        .chat-body {
            padding: 20px;
            overflow: scroll;
            overflow: hidden;
            overflow-y: auto; /* Enable vertical scrolling */
            max-height: 100%;
            background-color: #242527;
            border: 0px solid;
            border-radius: 24px;
            height: 700px; /* Limit chat window height */
        }
        .message time {
            font-size: 10px; /* Make the font size smaller */
            color: #ccc; /* Change the color to a muted gray */
            margin-left: 5px; /* Reduce the left margin */
        }
        .message {
            max-width: 70%;
            margin-bottom: 10px;
            padding: 10px;
            border-radius: 10px;
            clear: both;
            overflow-wrap: break-word;
        }
        .user-message {
            background-color: #e3a03cdb;
            color: #fff;
            float: right;
        }
        .assistant-message {
            background-color: #d98491;
            color: #ffffffe6;
            float: left;
        }
        .typing-indicator {
            color: #999;
            margin-left: 10px;
        }
        .input-container {
            display: flex;
            margin-top: 20px;
            background-color: #121314;
        }
        .input-container input[type="text"] {
            flex: 1;
            padding: 10px;
            background-color: #242527;
            border: 1px solid #1b1f23;
            border-radius: 5px;
            font-size: 16px;
        }
        .input-container button {
            background-color: #f13633;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
        }
        .image-gallery {
            margin-left: 20px; /* Adjust as needed */
            padding-left: 20px; /* Adjust as needed */
            border-left: 1px solid #1b1f23;
            width: 300px; /* Adjust width as needed */
            background-color: #121314;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        .image-gallery h2 {
            background-color: #1b1f23;
            color: #f2f2f2;
            padding: 15px;
            margin: 0;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border-radius: 10px;
            text-align: center;
        }
        .gallery {
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
        }
        .gallery img {
            width: calc(33.33% - 10px);
            margin: 5px;
            border-radius: 5px;
        }
        .profile-card {
    background-color: #1b1f23;
    border-radius: 10px;
    box-shadow: 0 0 4px rgb(171 173 177);
    padding: 20px;
    color: #fffcf6;
    margin-top: 20px;
}

.profile-card h2 {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.card-details {
    display: flex;
    justify-content: space-between;
}



.card-details table {
    width: 100%;
    border-collapse: collapse; /* Merge table borders */
}

/* Add borders to table cells */
.card-details table td {
    padding: 10px;
    border: 1px solid #212223; /* Add border to each cell */
}

/* Style the table header */
.card-details table th {
    padding: 10px;
    border: 1px solid #ccc; /* Add border to each cell */
    background-color: #f2f2f2; /* Add background color for the header */
}
.card-details table td:first-child {
    font-weight: bold;
    font-size: 12px;
    width: 40%;
}
.card-details table td:last-child {
    text-align: right;
    font-size: smaller;
}
.attribute-section {
    margin-bottom: 20px;
}
.modal-content {
    display: flex;
    flex-direction: column; /* Arrange buttons vertically */
}
.avatar {
    width: 40px; /* Adjust width as needed */
    height: 40px; /* Adjust height as needed */
    border-radius: 50%; /* Make the avatar circular */
    margin-right: 10px; /* Add spacing between the avatar and the text */
    border: 2px solid #33dd75; /* Add border around the avatar */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow effect */
}

.modal-content button {
    background-color: #242527;
    color: #d93;
    border: 1px solid; /* Corrected */
    padding: 9px 2px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content button:hover {
    background-color: #0056b3;
}

  .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
        }
             .input-container {
            display: flex;
            align-items: center;
            position: fixed;
            bottom: auto; /* Adjust as needed */
            left: 50%; /* Adjust as needed */
            transform: translateX(-50%);
            width: 905px; /* Adjust the width as needed */
            max-width: calc(100% - 40px); /* Adjust as needed */
        }
        .user_input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .send_button {
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 5px;
            padding: 10px;
            margin-left: 10px;
            cursor: pointer;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 22px;
        }
        /* Navigation bar */
.navbar {
    background-color: transparent; /* Navigation bar background color */
    color: #ffffff; /* Navigation bar text color */
    padding: 10px 20px; /* Adjust padding as needed */
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure navigation bar appears above other content */
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
}

/* Logo container */
.logo-container {
    margin-right: 20px; /* Adjust spacing as needed */
}

/* Logo */
.logo {
    width: auto; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
}

/* Navigation links */
.nav-links {
    display: flex;
}

/* Home button */
.home-button {
    background-color: #f13734; /* Button background color */
    color: #ffffff; /* Button text color */
    border: none; /* Remove button border */
    padding: 10px 20px; /* Adjust padding as needed */
    font-size: 16px; /* Adjust font size as needed */
    cursor: pointer;
    border-radius: 20px;
}

.home-button:hover {
    background-color: #555555; /* Change background color on hover if desired */
}


.attribute-section h3 {
    font-size: 14px; /* Adjust title size as needed */
    margin-bottom: 10px; /* Add spacing below the title */
}
/* Media query for adjusting styles on mobile devices */
@media (max-width: 768px) {
    /* Input container */
.input-container {
    position: fixed;
    bottom: 20px; /* Adjust distance from the bottom as needed */
    left: 48%;
    width: 100%;
    background-color: #242527; /* Adjust background color as needed */
    padding: 11px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
    z-index: 1000; /* Ensure input container appears above other content */
}

/* Input field */
.user_input {
    width: calc(100% - 100px); /* Adjust width as needed */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px; /* Adjust spacing as needed */
}

/* Send button */
.send_button {
    background-color: #333333;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
}
.chat-body {
    padding: 20px;
    overflow: scroll;
    overflow: hidden;
    overflow-y: auto;
    max-height: 63%;
    background-color: #242527;
    border: 0px solid;
    border-radius: 24px;
    height: 550px;
}

}



/* Adjust styling as needed */

        @media only screen and (max-width: 600px) {
    .container {
        flex-direction: column; /* Change flex direction to column for stacking */
    }
    .chat-container,
    .image-gallery {
        width: 100%; /* Set width to full for both containers */
        margin: 0 auto; /* Center the containers horizontally */
    }
}
    