/* ===== Alert Modal ===== */
.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.alert-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(0, 0, 0, 0.2);
}

.alert-icon-wrapper {
    margin-bottom: 20px;
}

.alert-icon-wrapper svg {
    filter: drop-shadow(0 4px 12px currentColor);
    opacity: 0.9;
}

.alert-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.alert-message {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.alert-buttons .btn-primary,
.alert-buttons .btn-secondary {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 14px;
}
