/* assets/css/custom-swal.css */

.swal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 17, 13, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.swal-overlay.active {
    opacity: 1;
}

.swal-card {
    background: #12201b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    width: 90%;
    max-width: 380px;
    padding: 30px 24px;
    color: #ffffff;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.swal-overlay.active .swal-card {
    transform: scale(1);
}

.swal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swal-icon-success {
    background-color: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border: 2px solid rgba(74, 222, 128, 0.4);
}

.swal-icon-error {
    background-color: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.4);
}

.swal-icon-warning {
    background-color: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 2px solid rgba(245, 158, 11, 0.4);
}

.swal-icon-info {
    background-color: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.swal-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.swal-text {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 24px;
}

.swal-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.swal-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    outline: none;
}

.swal-btn-confirm {
    background: linear-gradient(135deg, #AECB35 0%, #9db52e 100%);
    color: #111e19;
    box-shadow: 0 4px 12px rgba(174, 203, 53, 0.2);
}

.swal-btn-confirm:hover {
    background: linear-gradient(135deg, #c4e43e 0%, #aecb35 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(174, 203, 53, 0.35);
}

.swal-btn-confirm:active {
    transform: translateY(0);
}

.swal-btn-cancel {
    background-color: rgba(255, 255, 255, 0.05);
    color: #f3f4f6;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swal-btn-cancel:hover {
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
}
