body {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
}

.header .logo {
    margin-right: auto; 
}

.header .logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.header ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.header ul li {
    margin: 0 10px;
}

.header ul li a {
    color: #fff;
    text-decoration: none;
}



.sidebar {
    width: 100px;
    background-color: #2a2a2a;
    padding: 20px;
    overflow-y: auto;
    position: fixed;
    top: 70px;
    bottom: 0;
    left: 0;
}

/* WebKit browsers */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: #333;
}

::-webkit-scrollbar-button {
    display: none;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
}

.sidebar nav ul li {
    margin: 20px 0;
}

.sidebar nav ul li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sidebar nav ul li a i {
    margin-right: 10px;
    font-size: 1.9em; /* Adjust icon size */
}

/* CSS for index.html */
.index-main-content {
    display: flex;
    flex-direction: column; 
    padding: 20px;  
    height: 100vh;
    margin-left: 150px;  
    margin-top: 100px;  
    overflow-y: auto; }


    .recommend {
        position: relative; /* Position relative for absolute positioning of buttons */
        padding: 20px;
    }
.girls {
    margin: 20px 0;
    width: 100%;
    max-width: none;
    min-height: 500px;
}

.scroll-buttons {
    display: flex;
    align-items: center;
}

.card-container {
    display: flex;                 /* Use flexbox for layout */
    overflow-x: auto;             /* Enable horizontal scrolling */
    max-width: 100%;              /* Ensure it takes full width */
    scroll-behavior: smooth;      /* Smooth scrolling effect */
}

.card {
    background-color: #333;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    flex: 0 0 auto;
    width: 200px;
    margin: 0 10px; 
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin: 10px 0 5px;
}

.scroll-button {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
}

.scroll-button:hover {
    background-color: #555;
}

/* General styles for chat messages */
.message {
    padding: 5px; /* Adjust padding as needed */
    margin: 5px; /* Adjust margin as needed */
    border-radius: 10px;
    max-width: 50%; /* Maximum width of the message box */
    word-wrap: break-word; /* Ensure long words wrap to the next line */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    display: inline-block;
    background-color: #333; /* Adjust background color if necessary */
}

/* Style for user messages */
.user-message {
    background-color: #2c2b28; /* Light green background */
    color: #fff; /* Dark green text */
    align-self: flex-end; /* Align user messages to the left */
}

/* Style for server messages */
.server-message {
    background-color: #24323a; /* Light red background */
    color: #fff; /* Dark red text */
    align-self: flex-start; /* Align server messages to the right */
}

.chat-main-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-left: 110px; /* Adjust margin left to match sidebar width */
    margin-right: 260px; /* Adjust margin right to match chat-sidebar width */
    margin-top: 70px; /* Adjust margin top to clear header */
    overflow-y: auto;
    padding-bottom: 80px;
}


.chat-display {
    flex: 1;
    overflow-y: auto;
    
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.chat-input {
    display: flex;
    margin-top: auto; /* Push chat input to the bottom */
    padding: 10px;
    background-color: #1a1a1a;
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    left: 150px;
    right: 300px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    border: 1px solid #ccc;
    background-color: #333;
    color: #fff;
}

.chat-input button {
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    border: none;
    background-color: #007bff;
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
}

.chat-sidebar {
    width: 250px;
    background-color: #2a2a2a;
    padding: 20px;
    overflow-y: auto;
    position: fixed;
    top: 70px; /* Adjust to be below the fixed header */
    right: 0;
    bottom: 0;
}

.chat-sidebar h2 {
    font-size: 1.5em;
}


.profile-details {
    display: flex;
    flex-direction: column;
}

.profile-name, .profile-last-message {
    margin: 0;
}

.profile-name {
    font-weight: bold;
}

.profile-last-message {
    color: #bbb;
}

.conversation {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px; /* Add padding to the container */
    background-color: #333; /* Optional: Set a background color */
    border-radius: 8px; /* Optional: Add border radius for rounded corners */
}


.chat-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.chat-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff; /* Adjust text color */
}

.conversation img {
    width: 70px;
    height: 70px;
    border-radius: 30%;
    margin-right: 10px;
    object-fit:cover;
}

.conversation p {
    margin: 0;
}

.conversation.active {
    background-color: #0b7fec4d; /* Change this to your desired active background color */
}


.main-content.no-chats {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust based on your layout */
    color: #fff; /* Adjust text color */
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    width: 80%;
    max-width: 400px;
}
.popup-content img {
    width: 100%;
    height: auto;
    display: block;
}
.overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Align content to the bottom */
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
}
.popup h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}
.signIn {
    background-color: #ec650b;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    display: flex; /* Make the button flex container */
    align-items: center; /* Align items vertically */
}
.signIn:hover {
    background-color: #226d36; /* Green color on hover */
}
.signIn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 24px;
    z-index: 2;
}
.close-btn:hover {
    color: #ff0000;
}

.go-pro-block {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('images/Pro.png'); /* Update this with the path to your image */
    background-size: cover;
    background-position: center;
    width: 500px; /* Adjust width as needed */
    height: 500px; /* Adjust height as needed */
    border-radius: 15px;
    overflow: hidden;
}

.go-pro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;



}

.go-pro-content {
    text-align: center;
    color: white;
}

.go-pro-h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.go-pro-ul {
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.go-pro-ul-li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.go-pro-ul-li:before {
    content: "✔";
    margin-right: 10px;
    color: #ff0050; /* Update this color as needed */
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.price {
    font-size: 2em;
    font-weight: bold;
    margin-right: 10px;
}

.frequency {
    font-size: 0.8em;
    color: #ccc;
}

.best-sale {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
}

.subscribe-button {
    background: linear-gradient(to right, #ff0050, #ff66a3); /* Update gradient colors as needed */
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-button:hover {
    background: linear-gradient(to right, #ff66a3, #ff0050); /* Update gradient colors as needed */
}

.appCreationBlock {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('images/Pro.png'); /* Update this with the path to your image */
    background-size: cover;
    background-position: center;
    width: 500px; /* Adjust width as needed */
    height: 500px; /* Adjust height as needed */
    border-radius: 15px;
    overflow: hidden;
}
.app-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;



}

.app-content {
    text-align: center;
    color: white;
}

.app-h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* About Us Block */
/* About Us Block */
.about-us-block {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 1000; /* Ensure it's on top of other content */
    justify-content: center;
    align-items: center;
}

.about-us-overlay {
    background: linear-gradient(135deg, #ff6f61, #ffb88c, #f4e4d8);
    padding: 20px;
    border-radius: 15px;
    max-width: 800px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative; /* Make the overlay relative to position the button */
}

.about-us-content {
    color: #000; /* White text for visibility */
    text-align: center;
}

.about-us-content h1,
.about-us-content h2 {
    margin: 15px 0;
    color: #000; /* Ensure headers are also white */
}

.about-us-content p,
.about-us-content a {
    margin: 10px 0;
    color: #000; /* Ensure paragraphs and links are also white */
}

.about-us-content a {
    text-decoration: underline;
}

.close-btn-a {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}
.close-btn-a:hover {
    color: #ff0000;
}












/* VVIP Link */
.vvip-link {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}
.go-pro-link {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}


/* Hamburger Button */
.hamburger {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none; 
    color: white;
}

/* Header Links - Default (Visible on Desktop) */
.header-links {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    
}

/* Ensure Hidden Class Works */
.header-links.hidden {
    display: none; 
}

/* Desktop View (Min Width 768px) */
@media (min-width: 768px) {
    .hamburger {
        display: none; 
    }
    .header-links {
        display: flex; 
        flex-direction: row; 
        position: static; 
    }
     .dropdown-button,
    .dropdown-menu {
        display: none;
    }
    .grid-menu {
        display: none; 
    }
    .grid-icon {
        display: none; 
    }
    
    
}

.dropdown-menu {
    display: none; 
    position: absolute; 
    background-color: #f1e9e6; 
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); 
    z-index: 1000; 
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0; 
    margin: 0; 
}

.dropdown-menu li {
    padding: 10px; 
}

.dropdown-menu a {
    text-decoration: none; 
    color: black; 
    display: block; 
}

.dropdown-button {
    margin-right: 10px;
    background: none; 
    border: none; 
    cursor: pointer; 
    font-size: 24px; 
}


/* Grid Menu */
.grid-menu {
    display: none; 
    position: absolute;
    top: 70px; 
    right: 100px;
    background-color: black;
    list-style: none; 
    padding: 10px; 
    border-radius: 5px; 
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3); 
    z-index: 1000; 
    flex-direction: column;
}

.grid-icon {
    background: none;
    border: none; 
    cursor: pointer; 
    font-size: 22px; 
    color: white; 
}


/* Show the menu when the hidden class is removed */
.grid-menu.hidden {
    display: none; 
}

.grid-menu.show {
    display: flex; 
}

.grid-menu li {
    padding: 8px 12px; 
}

.grid-menu li a {
    text-decoration: none;
    color: white;
    display: block; 
}

/* Add hover effect */
.grid-menu li a:hover {
    background-color: #444; 
}

/* Mobile View (Max Width 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .header-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 50px; 
        right: 0;
        background-color: black;
        width: auto;
        text-align: right;
    }

    .dropdown-button,
    .dropdown-menu {
        display: block; 
    }

    .sidebar {
        display: none;
    }
 
    .card-container {
        display: flex;
        flex-wrap: wrap; 
        justify-content: flex-start;
        gap: 10px;
        padding: 0;
        margin: 0;
    }
    
    .card {
        background-color: #333;
        padding: 10px;
        border-radius: 10px;
        text-align: center;
        flex: 0 0 auto;
        width: 120px; 
        margin: 0 5px; 
        flex: 1 0 auto;
    }
    

    /* Optional: Style adjustments for cards on mobile */
    .card img {
        max-width: 100%;        
        height: auto;       
    }
    .scroll-buttons {
        display: none; 
    }
    .scrollable-container {
        max-height: 80vh; 
        overflow-y: auto; 
    }
    .image-card {
        flex: 0 0 auto;
        width: calc(33.33% - 10px);
        margin: 5px; 
    }

    /* Optional: Make images responsive */
    .image-card {
        height: auto; 
    
        object-fit: cover; 
    }
    .index-main-content {
        margin-left: 0; 
    }

    .chat-sidebar {
        position: fixed;
        top: 70px;
        bottom: 0;
        right: -250px; 
        width: 250px;
        height: 100vh;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease; 
        z-index: 100;
        background-color: #2a2a2a;
        padding: 20px;
        overflow-y: auto;
    }
    .chat-sidebar h2 {
        
        font-size: 1.2rem; /* Make it readable */
       
    }

    .chat-sidebar.show {
        right: 0; /* Slide in the sidebar */
    }

    /* Sidebar Toggle Button */
    .toggle-sidebar-btn {
        position: fixed;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        background-color: #333;
        color: white;
        border: none;
        font-size: 24px;
        cursor: pointer;
        z-index: 101; /* Ensure it's above the sidebar */
    }
    .chat-main-content {
        display: flex;
        flex-direction: column;
        height: 100vh;
        padding: 20px;
        margin-left: 10px; /* Adjust margin left to match sidebar width */
        margin-right: 10px; /* Adjust margin right to match chat-sidebar width */
        margin-top: 70px; /* Adjust margin top to clear header */
        overflow-y: auto;
        padding-bottom: 80px;
    }
    .chat-display {
        flex: 1;
        overflow-y: auto;
        padding: 10px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
    }
    .chat-input {
        display: flex;
        margin-top: auto; /* Push chat input to the bottom */
        padding: 10px;
        background-color: #1a1a1a;
        border-radius: 10px;
        position: absolute; /* Change to absolute */
        bottom: 20px;
        left: 10px;
        right: 20px;
        z-index: 200; /* Ensure it is above the chat sidebar */
    }
    
    .chat-input input {
        flex: 1;
        padding: 10px;
        border-radius: 5px 0 0 5px;
        border: 1px solid #ccc;
        background-color: #333;
        color: #fff;
    }
    
    .chat-input button {
        padding: 10px 20px;
        border-radius: 0 5px 5px 0;
        border: none;
        background-color: #007bff;
        color: #fff;
        margin-left: 10px;
        cursor: pointer;
        font-size: 16px;
    }
    .chat-input button:hover {
        background-color: #555;
    }

    .about-us-block {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
        z-index: 1000; /* Ensure it's on top of other content */
        justify-content: center;
        align-items: center;
    }
    .go-pro-block {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-image: url('images/Pro.png'); /* Update this with the path to your image */
        background-size: cover;
        background-position: center;
        width: 400px; /* Adjust width as needed */
        height: 400px; /* Adjust height as needed */
        border-radius: 15px;
        overflow: hidden;
    }
    .appCreationBlock {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('images/Pro.png'); /* Update this with the path to your image */
    background-size: cover;
    background-position: center;
    width: 400px; /* Adjust width as needed */
    height: 400px; /* Adjust height as needed */
    border-radius: 15px;
    overflow: hidden;
}
}
    
    


    
    
   
    
   
    
    