.afc-dashboard{max-width:1200px;margin:0 auto;padding:20px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif}
.afc-dashboard-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:30px;padding-bottom:20px;border-bottom:1px solid #e0e0e0}
.afc-dashboard-nav{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:30px}
.afc-tab{display:flex;align-items:center;gap:8px;padding:12px 20px;background:#f5f5f5;border-radius:8px;text-decoration:none;color:#333;transition:.2s}
.afc-tab:hover,.afc-tab.active{background:#1a1a2e;color:#fff}
.afc-stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:20px;margin-bottom:30px}
.afc-stat-card{background:#fff;border:1px solid #e0e0e0;border-radius:12px;padding:24px;text-align:center}
.afc-stat-highlight{background:linear-gradient(135deg,#1a1a2e,#e94560);color:#fff}
.afc-stat-value{font-size:2rem;font-weight:700;margin-bottom:8px}
.afc-stat-label{font-size:.9rem;opacity:.8}
.afc-info-box{background:#e3f2fd;border-left:4px solid #2196f3;padding:15px;margin-bottom:20px;border-radius:4px}
.afc-form-container{max-width:500px;margin:0 auto;padding:40px;background:#fff;border-radius:12px;box-shadow:0 2px 10px rgba(0,0,0,.1)}
.afc-form-group{margin-bottom:20px}
.afc-form-group label{display:block;margin-bottom:8px;font-weight:500}
.afc-form-group input,.afc-form-group select,.afc-form-group textarea{width:100%;padding:12px;border:1px solid #ddd;border-radius:8px;font-size:1rem}
.afc-btn{display:inline-block;padding:12px 24px;border:none;border-radius:8px;font-size:1rem;cursor:pointer;text-decoration:none;transition:.2s}
.afc-btn-primary{background:#e94560;color:#fff}.afc-btn-primary:hover{background:#d63850}
.afc-btn-secondary{background:#f5f5f5;color:#333}.afc-btn-secondary:hover{background:#e0e0e0}
.afc-quick-actions{display:flex;gap:15px;flex-wrap:wrap}
.afc-badge{display:inline-block;padding:4px 12px;border-radius:20px;font-size:.8rem;font-weight:500}
.afc-badge-success{background:#c8e6c9;color:#2e7d32}
.afc-badge-warning{background:#fff3cd;color:#856404}
.afc-badge-danger{background:#ffcdd2;color:#c62828}
.afc-badge-info{background:#bbdefb;color:#1565c0}
.afc-form-footer{text-align:center;margin-top:20px}


.afc-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    max-height: 220px;      /* make it taller */
    overflow-y: auto;       /* scroll if there are many */
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
}

.afc-category-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
}

.afc-category-item input[type="checkbox"] {
    transform: scale(1.05);
}
