/* Layout Image Popup Styles */
.layout-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.layout-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.layout-popup-content {
    position: relative;
    width: 80%;
    height: 80%;
    max-width: 1200px;
    margin: 5% auto;
    z-index: 10000;
    background-color: white;
    padding: 80px 120px 60px;
    border-radius: 20px;
}

.layout-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 28px;
    color: black;
    cursor: pointer;
    z-index: 10001;
}

.layout-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.layout-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.layout-info {
    width: 100%;
    color: black;
    text-align: center;
    margin-top: 20px;
    font-family: 'inter';
}

.layout-title {
    font-size: 16px;
    font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .layout-popup-content {
        width: 90%;
        padding: 60px 60px 40px;
    }

    .layout-popup {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .layout-popup-content {
        width: 95%;
        padding: 40px 20px 20px;
    }
    
    .layout-popup-close {
        top: 10px;
        right: 10px;
    }
}