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

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    position: relative;
}

span {
    color: #ffffff;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    z-index: 1000;
}

header .logo {
    color: #fff;
}

header .logo p {
    font-size: 12px;
    color: #999;
}

header .menu {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

header .menu li {
    margin: 0 10px;
    list-style: none;
}

header .menu li a {
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    transition: 0.5s;
}

header .menu li a:hover {
    color: #fff;
    font-size: 15px;
}

header .menu li a::before {
    position: absolute;
    bottom: -5px;
    content: "";
    width: 0%;
    height: 4px;
    border-radius: 6px;
    transition: 0.5s;
    background-color: #ffffff;
}

header .menu li a:hover::before {
    width: 100%;
}

/* Toggle Menu (Hamburger) */
.toggle-menu {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    position: relative;
}

/* Flèche de retour en haut */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #000000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background-color: #333333;
    transform: scale(1.1);
}

.back-to-top::before {
    content: "↑";
    font-size: 20px;
    color: #ffffff;
}

/* Section générique */
section {
    min-height: calc(100vh - 80px);
    padding: 0 5%;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.team-section, .join-section, .photobooth-section {
    padding: 0 5%;
    min-height: calc(100vh - 80px);
    display: block;
    padding-top: 100px;
}

/* Left Section */
.left {
    width: 100%;
}

.search-box {
    display: flex;
    align-items: center;
    border: 2px solid #000000;
    width: 200px;
    padding: 5px 8px;
    border-radius: 60px;
}

.search-box img {
    width: 14px;
}

.search-box input {
    background-color: transparent;
    color: #fff;
    width: calc(100% - 14px);
    padding-left: 5px;
    border: 0;
    outline: 0;
    font-size: 12px;
}

.left hr {
    width: 80px;
    margin: 15px 0;
    background-color: #ffffff;
    border: 0;
    height: 4px;
    border-radius: 6px;
}

.left h1 {
    font-size: 24px;
    color: #fff;
}

.left p {
    color: #999;
    font-size: 12px;
    margin: 10px 0;
}

.icons {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    list-style: none;
    margin: 15px 0;
}

.rubrique-btn {
    padding: 10px 18px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 6px;
    transition: 0.5s;
    font-size: 12px;
    background-color: #ffffff;
    color: #000;
    border: none;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
}

.rubrique-btn:hover {
    background-color: #cccccc;
    transform: scale(1.05);
}

/* Right Section */
.right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.right img {
    height: 50%;
    width: 50%;
}

/* Video Placeholder */
.video-placeholder {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    text-align: center;
    animation: pulse 2s infinite;
}

.video-placeholder p {
    color: #999;
    font-size: 14px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* About Section */
.about-section {
    padding: 20px 5%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-image {
    width: 50%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.about-text {
    width: 45%;
    color: #fff;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    text-align: center;
}

.about-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 14px;
    color: #ddd;
}

/* Partners Section */
.partners-section {
    padding: 20px 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.partners-section h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.partners-scroller {
    overflow: hidden;
    width: 100%;
}

.partners-inner {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    width: 150px;
    height: 75px;
    object-fit: contain;
    margin: 0 30px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Photobooth Offers Section */
.photobooth-offers {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.offer-card {
    background-color: #f5f5e5;
    border-radius: 15px;
    padding: 20px;
    flex: 1;
    text-align: center;
    position: relative;
    color: #000;
}

.offer-logo {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(45deg, #add8e6, #ffffff);
}

.offer-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.offer-card ul {
    list-style: none;
    padding: 0;
}

.offer-card ul li {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #333;
}

.offer-card ul li::before {
    content: "✔";
    color: #00cc00;
    position: absolute;
    left: 0;
}

/* Team Section */
.team-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.team-content h1 {
    font-size: 24px;
    color: #fff;
    margin-top: 15px;
}

.team-content hr {
    width: 80px;
    margin: 15px 0;
    background-color: #ffffff;
    border: 0;
    height: 4px;
    border-radius: 6px;
}

.team-content p {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.team-member {
    text-align: center;
    transition: 0.5s;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-bottom: 8px;
}

.team-member h2 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 5px;
}

.team-member p {
    color: #999;
    font-size: 12px;
}

/* Photobooth Section */
.photobooth-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.photobooth-content h1 {
    font-size: 24px;
    color: #fff;
    margin-top: 15px;
}

.photobooth-content hr {
    width: 80px;
    margin: 15px 0;
    background-color: #ffffff;
    border: 0;
    height: 4px;
    border-radius: 6px;
}

.photobooth-hero {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.photobooth-hero img {
    width: 50%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.photobooth-hero p {
    color: #999;
    font-size: 14px;
}

.photobooth-features h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.photobooth-features ul {
    list-style: none;
    color: #999;
    font-size: 14px;
}

.photobooth-features ul li {
    margin-bottom: 10px;
}

.photobooth-features ul li strong {
    color: #fff;
}

.photobooth-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.photobooth-gallery img {
    width: calc(33.33% - 10px);
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.photobooth-testimonials {
    margin-top: 30px;
}

.photobooth-testimonials h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.testimonial p {
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* Join Section */
.join-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.join-content h1 {
    font-size: 24px;
    color: #fff;
    margin-top: 15px;
}

.join-content hr {
    width: 80px;
    margin: 15px 0;
    background-color: #ffffff;
    border: 0;
    height: 4px;
    border-radius: 6px;
}

.join-text {
    text-align: center;
    margin-top: 30px;
}

.join-text p {
    color: #999;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.contact-form h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.google-form-btn {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 6px;
    transition: 0.5s;
    margin: 8px auto;
    font-size: 12px;
    background-color: #ffffff;
    color: #000;
    border: none;
    cursor: pointer;
}

.google-form-btn:hover {
    background-color: #cccccc;
    transform: scale(1.05);
}

/* Details Button and Popup */
.details-btn {
    padding: 8px 16px;
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.5s, transform 0.5s;
}

.details-btn:hover {
    background-color: #cccccc;
    transform: scale(1.05);
}

.details-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.details-popup.active {
    display: flex;
}

.popup-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px; /* Largeur fixe pour un affichage portrait */
    max-height: 80vh; /* Hauteur maximale pour défilement */
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup:hover {
    color: #000;
}

.popup-content h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.popup-content h3 {
    font-size: 18px;
    color: #000;
    margin: 15px 0 10px;
}

.popup-content p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.popup-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.popup-content ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.popup-content ul li::before {
    content: "•";
    color: #000;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.popup-content ul li strong {
    color: #000;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 15px 0;
    text-align: center;
    margin-top: 50px;
}

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

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.linkedin-logo,
.site-logo {
    display: inline-block;
    text-decoration: none;
    transition: 0.5s;
}

.social-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    transition: transform 0.5s;
}

.linkedin-logo:hover .social-icon,
.site-logo:hover .social-icon {
    transform: scale(1.2);
}

/* Nouveaux styles pour le modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content h3 {
    font-size: 18px;
    color: #000;
    margin: 15px 0 10px;
}

.modal-content p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.modal-content ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.modal-content ul li::before {
    content: "•";
    color: #000;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.modal-content ul li strong {
    color: #000;
}

/* Responsive Breakpoints */

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
    header {
        padding: 0 3%;
    }

    header .menu {
        display: none;
    }

    .toggle-menu {
        display: flex;
    }

    .toggle-menu::before {
        height: 4px;
        width: 20px;
        background-color: #fff;
        border-radius: 6px;
        box-shadow: 0 8px 0 #fff;
        transform: translateY(-8px);
        transition: 0.5s;
        content: "";
        position: absolute;
    }

    .toggle-menu.active::before {
        transform: translateY(0) rotate(-45deg);
        box-shadow: 0 0 0 #fff;
    }

    .toggle-menu::after {
        height: 4px;
        width: 20px;
        background-color: #fff;
        border-radius: 6px;
        transform: translateY(8px);
        transition: 0.5s;
        content: "";
        position: absolute;
    }

    .toggle-menu.active::after {
        transform: translateY(0) rotate(45deg);
    }

    header .menu.responsive {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        background-color: #000000;
        height: calc(100vh - 80px);
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 999;
    }

    header .menu.responsive li {
        margin: 20px 0;
    }

    section, .team-section, .join-section, .photobooth-section {
        padding: 0 3%;
        padding-top: 100px;
    }

    .left, .right {
        width: 100%;
    }

    section {
        flex-direction: column;
    }

    .search-box {
        width: 180px;
    }

    .search-box img {
        width: 12px;
    }

    .search-box input {
        font-size: 11px;
    }

    .left h1, .team-content h1, .join-content h1, .photobooth-content h1 {
        font-size: 20px;
    }

    .left hr, .team-content hr, .join-content hr, .photobooth-content hr {
        width: 60px;
        height: 3px;
    }

    .left p, .team-member p, .join-text p, .photobooth-hero p, .photobooth-features p, .testimonial p {
        font-size: 11px;
        margin-bottom: 30px;
    }

    .icons {
        gap: 10px;
    }

    .rubrique-btn {
        font-size: 10px;
        min-width: 80px;
        padding: 8px 12px;
    }

    .right img {
        height: 40%;
        width: 40%;
    }

    .video-placeholder {
        padding: 15px;
    }

    .video-placeholder p {
        font-size: 12px;
    }

    .about-section {
        gap: 20px;
    }

    .about-block {
        flex-direction: column;
        min-height: auto;
    }

    .about-image, .about-text {
        width: 100%;
    }

    .about-image {
        height: 150px;
        margin-bottom: 15px;
    }

    .about-text {
        padding: 15px;
    }

    .about-text h2 {
        font-size: 18px;
    }

    .about-text p {
        font-size: 12px;
    }

    .partners-section {
        padding: 10px 3%;
    }

    .partner-logo {
        width: 100px;
        height: 50px;
        margin: 0 15px;
    }

    .photobooth-offers {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }

    .offer-card {
        padding: 15px;
    }

    .offer-logo {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 24px;
    }

    .offer-card h3 {
        font-size: 16px;
    }

    .offer-card ul li {
        font-size: 12px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .team-member img {
        max-width: 100px;
        height: 100px;
    }

    .team-member h2 {
        font-size: 14px;
    }

    .details-btn {
        font-size: 11px;
        padding: 6px 12px;
    }

    .popup-content {
        width: 90%;
        max-width: 350px; /* Légèrement plus petit pour mobile */
        max-height: 80vh;
        padding: 15px;
    }

    .close-popup {
        font-size: 20px;
    }

    .popup-content h2 {
        font-size: 18px;
    }

    .popup-content h3 {
        font-size: 14px;
    }

    .popup-content p {
        font-size: 12px;
    }

    .popup-content ul li {
        font-size: 12px;
    }

    .photobooth-hero {
        flex-direction: column;
    }

    .photobooth-hero img {
        width: 100%;
    }

    .photobooth-gallery img {
        width: 100%;
    }

    .join-text p {
        font-size: 12px;
    }

    .contact-form {
        padding: 20px;
        margin: 30px auto;
    }

    .contact-form h2 {
        margin-bottom: 15px;
    }

    .footer {
        padding: 10px 0;
        margin-top: 20px;
    }

    .footer p {
        font-size: 10px;
    }

    .footer-buttons {
        gap: 10px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
    }

    .back-to-top::before {
        font-size: 18px;
    }

    /* Ajustements pour le modal sur mobile */
    .modal-content {
        max-width: 350px;
        padding: 15px;
    }

    .close-modal {
        font-size: 20px;
    }

    .modal-content h2 {
        font-size: 18px;
    }

    .modal-content h3 {
        font-size: 14px;
    }

    .modal-content p {
        font-size: 12px;
    }

    .modal-content ul li {
        font-size: 12px;
    }
}

/* Tablet (601px à 1200px) */
@media (min-width: 601px) and (max-width: 1200px) {
    header {
        padding: 0 5%;
    }

    header .menu li {
        margin: 0 12px;
    }

    header .menu li a {
        font-size: 14px;
    }

    header .menu li a:hover {
        font-size: 16px;
    }

    section, .team-section, .join-section, .photobooth-section {
        padding: 0 5%;
        padding-top: 100px;
    }

    .left {
        width: 50%;
    }

    .right {
        width: 50%;
    }

    .search-box {
        width: 220px;
    }

    .search-box img {
        width: 16px;
    }

    .search-box input {
        font-size: 13px;
    }

    .left h1, .team-content h1, .join-content h1, .photobooth-content h1 {
        font-size: 26px;
    }

    .left hr, .team-content hr, .join-content hr, .photobooth-content hr {
        width: 90px;
    }

    .left p, .team-member p, .join-text p, .photobooth-hero p, .photobooth-features p, .testimonial p {
        font-size: 13px;
    }

    .icons {
        gap: 15px;
    }

    .rubrique-btn {
        font-size: 11px;
        min-width: 100px;
        padding: 8px 14px;
    }

    .right img {
        height: 55%;
        width: 55%;
    }

    .about-section {
        gap: 30px;
    }

    .about-block {
        flex-direction: column;
        min-height: auto;
    }

    .about-image, .about-text {
        width: 100%;
    }

    .about-image {
        height: 180px;
        margin-bottom: 15px;
    }

    .photobooth-offers {
        flex-direction: column;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .team-member img {
        max-width: 130px;
        height: 130px;
    }

    .team-member h2 {
        font-size: 16px;
    }

    .join-text p {
        font-size: 14px;
    }

    .contact-form {
        padding: 25px;
        margin: 35px auto;
    }

    .footer {
        padding: 15px 0;
    }

    .footer p {
        font-size: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
    }

    .back-to-top::before {
        font-size: 19px;
    }

    .popup-content {
        width: 80%;
        max-width: 400px;
        max-height: 85vh;
        padding: 20px;
    }

    /* Ajustements pour le modal sur tablette */
    .modal-content {
        max-width: 400px;
    }
}

/* PC fixe (1201px et plus) */
@media (min-width: 1201px) {
    header {
        padding: 0 3%;
    }

    header .menu li {
        margin: 0 15px;
    }

    header .menu li a {
        font-size: 15px;
    }

    header .menu li a:hover {
        font-size: 18px;
    }

    section, .team-section, .join-section, .photobooth-section {
        padding: 0 10%;
        padding-top: 100px;
    }

    .left {
        width: 45%;
    }

    .right {
        width: 55%;
    }

    .search-box {
        width: 250px;
    }

    .search-box input {
        font-size: 14px;
    }

    .left h1, .team-content h1, .join-content h1, .photobooth-content h1 {
        font-size: 30px;
    }

    .left hr, .team-content hr, .join-content hr, .photobooth-content hr {
        width: 120px;
        height: 5px;
    }

    .left p, .team-member p, .join-text p, .photobooth-hero p, .photobooth-features p, .testimonial p {
        font-size: 15px;
    }

    .icons {
        gap: 25px;
    }

    .rubrique-btn {
        font-size: 16px;
        min-width: 130px;
    }

    .right img {
        height: 60%;
        width: 60%;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .team-member img {
        max-width: 150px;
        height: 150px;
    }

    .team-member h2 {
        font-size: 18px;
    }

    .join-text p {
        font-size: 16px;
    }

    .contact-form {
        padding: 30px;
        margin: 40px auto;
    }

    .footer {
        padding: 25px 0;
        margin-top: 60px;
    }

    .footer p {
        font-size: 14px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .popup-content {
        width: 100%;
        max-width: 400px;
        max-height: 80vh;
        padding: 25px;
    }
}