.dplt-overlay-3604e03c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dplt-overlay-3604e03c.dplt-active-3604e03c {
    opacity: 1;
    visibility: visible;
}

.dplt-popup-inner-3604e03c {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dpltSlideUp3604e03c 0.3s ease;
}

@keyframes dpltSlideUp3604e03c {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dplt-close-btn-3604e03c {
    position: sticky;
    top: 10px;
    float: right;
    margin-right: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    font-size: 28px;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease;
}

.dplt-close-btn-3604e03c:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #000;
}

.dplt-content-3604e03c {
    padding: 20px;
}

.dplt-loader-3604e03c {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.dplt-spinner-3604e03c {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: #333;
    border-radius: 50%;
    animation: dpltSpin3604e03c 0.8s linear infinite;
}

@keyframes dpltSpin3604e03c {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .dplt-popup-inner-3604e03c {
        width: 95%;
        max-height: 90vh;
        border-radius: 8px;
    }

    .dplt-content-3604e03c {
        padding: 15px;
    }
}
