.servis-jaz-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    animation: fadeIn 0.3s ease-in-out;
}

.servis-jaz-popup-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.servis-jaz-popup {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.servis-jaz-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
}

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

.servis-jaz-popup-content {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
