/* ============================================================
   Modal Windows Styles (Specific)
   ============================================================ */

/* Базові стилі модальних вікон винесені в gvp-base-modal.css */

/* ============================================
   CONFIRM MODAL
   ============================================ */

.gvp-confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gvpFadeIn 0.2s ease;
}

.gvp-confirm-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.gvp-confirm-modal__content {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: gvpModalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.gvp-confirm-modal__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
}

.gvp-confirm-modal__icon svg {
    width: 32px;
    height: 32px;
}

.gvp-confirm-modal__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f3f4f6;
    margin: 0 0 0.75rem 0;
}

.gvp-confirm-modal__message {
    font-size: 0.9375rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.gvp-confirm-modal__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.gvp-confirm-modal__actions .gvp-button {
    flex: 1;
    max-width: 150px;
}

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

@keyframes gvpModalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Адаптивність для менших екранів */
@media (max-width: 768px) {
    .gvp-confirm-modal__content {
        padding: 1.5rem;
        max-width: 340px;
    }
}

