/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Navigation */
nav ul {
    list-style: none;
    background-color: #000;
    padding: 10px;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
}

/* About Section */
#about {
    padding: 40px;
    background-color: #f4f4f4;
    margin: 40px auto;
    max-width: 1200px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Models Carousel Section */
#models-carousel {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-item {
    flex: 0 0 auto;
    width: 1200px;
    margin: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 10px;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    opacity: 0.7;
}

.carousel-btn:hover {
    opacity: 1;
}

.prev {
    left: -30px;
}

.next {
    right: -30px;
}

/* Music Section */
#music {
    padding: 40px;
    background-color: #f4f4f4;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.music-table {
    width: 100%;
    border-collapse: collapse;
}

.music-table th, .music-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.music-table th {
    background-color: #f9f9f9;
}

.message-container {
    display: flex;
    justify-content: space-between;
    height: 80vh;
}
.user-list ul {
    list-style: none;
    padding: 0;
}
.user-list li {
    margin-bottom: 10px;
}
.chat-messages {
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;
}
.sent {
    text-align: right;
    color: #333;
}
.received {
    text-align: left;
    color: #555;
}

.user-list a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.user-list a:hover {
    color: #555;
}


@media (max-width: 600px) {
    .grid-item {
        padding: 10px;
    }
    .grid-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
        padding: 10px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .login-box, #about, #music, #models-grid {
        margin: 10px;
        padding: 20px;
    }

    footer {
        font-size: 14px;
        padding: 15px 5px;
    }

    #about-image .image-holder img {
        width: 100%;
        height: auto;
    }

    .carousel-btn {
        display: none;
    }
}
/* Responsive Navbar */
.navbar {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.brand-title {
    font-size: 20px;
    font-weight: bold;
}

.toggle-button {
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none;
}

.navbar-links {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar-links ul {
    list-style: none;
    display: flex;
    padding-left: 0;
    margin: 0;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.navbar-links li {
    margin: 0 15px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.navbar-links a:hover {
    text-decoration: underline;
}

/* Mobile View */
@media (max-width: 768px) {
    .toggle-button {
        display: block;
    }

    .navbar-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background-color: #111;
        padding: 10px 20px;
    }

    .navbar-links ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar-links li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

    .navbar-links.active {
        display: flex;
    }
}


