/* Support page specific styles */
.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.support-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.support-form-card h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* Row that is inactive (support not in force) */
.row-inactive {
    opacity: 0.55;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
}
.status-active {
    background: #d1fae5;
    color: #065f46;
}
.status-inactive {
    background: #fee2e2;
    color: #991b1b;
}

/* Warning sections */
.warning-section {
    margin-top: 30px;
    border: 1px solid var(--warning-color);
    border-radius: 8px;
    padding: 16px 20px;
    background: #fffbeb;
}
.warning-section h3 {
    margin-bottom: 12px;
    color: #92400e;
    font-size: 1rem;
}
.warning-section .projects-table-container {
    margin: 0;
}
.warning-section .projects-table {
    font-size: 0.9rem;
}
