﻿:root {
    --navy: #f1f5f9;
    --primary: #0187ff;
    --primary-light: #0187ff;
    --white: #1e293b;
    --muted: #64748b;
    --border: rgba(15, 23, 42, 0.08);
    --card: rgba(255, 255, 255, 0.7);
}

.swal-modern {
    border-radius: 10px !important;
    padding: 1.5rem !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid #e6eaf0;
}

/* título */
.swal-title {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #1f2d3d;
}

/* texto */
.swal-text {
    font-size: 0.95rem;
    color: #6c7a89;
}

/* botão */
.swal-confirm-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: 1px solid var(--primary);
    border-radius: 14px;
    color: var(--navy);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .swal-confirm-btn:hover {
        background: #2448c9;
    }
