/* ============================================
   BUTTON STYLES - Alert Actions
   ============================================ */

.btn-small {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-success {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.buttons-css .btn-secondary {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    backdrop-filter: blur(20px);
}

.buttons-css .btn-secondary:hover {
    background: rgba(51, 65, 85, 0.8);
    border-color: #3B82F6;
    color: #f8fafc;
}

.alert-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.alert-resolved {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    color: #22C55E;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
