/* SafeHaven - Alerts Page Styles */

/* Placeholder styles for alerts page */
.alerts-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.alert-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.alert-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.alert-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.alert-status.active {
    background: #fef3c7;
    color: #92400e;
}

.alert-status.warning {
    background: #fee2e2;
    color: #991b1b;
}
