/* Lake Popup Styles */
#lake-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#lake-popup-modal.active {
    opacity: 1;
    visibility: visible;
}
.lake-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.lake-popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.lake-popup-centered .lake-popup-content {
    width: 30%;
    min-width: 300px;
    max-width: 600px;
    border-radius: 20px;
}
.lake-popup-fullscreen .lake-popup-content {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.lake-popup-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lake-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ddd;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}
.lake-popup-close:hover {
    background: #fff;
    border-color: #ccc;
    color: #000;
    transform: scale(1.1);
}
#lake-popup-title {
    margin-top: 20px !important;
    padding-top: 10px !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
}
.lake-popup-image {
    display: block;
    margin: auto;
    height: auto;
}
.lake-popup-text {
    line-height: 1.4 !important;
    text-align: center !important;
}
.lake-popup-button {
    display: inline-block !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    margin-top: 15px !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center !important;
}
.lake-popup-button:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .lake-popup-centered .lake-popup-content {
        width: 90%;
        min-width: 250px;
        max-height: 60vh;
        overflow-y: auto;
    }
    .lake-popup-content {
        padding: 15px;
        border-radius: 15px;
    }
    #lake-popup-title {
        font-size: 24px;
    }
    .lake-popup-image.small,
    .lake-popup-image.medium,
    .lake-popup-image.large,
    .lake-popup-image.custom {
        max-width: 80%;
    }
}
