/* hire-blacklist.css */

.hbl-container { padding: 1rem 0; }
.hbl-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.hbl-header h2 { margin: 0; color: var(--text-primary, #e2e8f0); font-size: 1.4rem; }
.hbl-btn-dashboard { background: var(--bg-secondary, #334155); color: var(--text-primary, #e2e8f0); border: 1px solid var(--border, #475569); border-radius: 6px; padding: 0.5rem 1rem; font-weight: bold; cursor: pointer; font-size: 0.9rem; }

.hbl-search-row { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; align-items: center; }
.hbl-search-input { flex: 1; padding: 0.5rem 1rem; border-radius: 6px; border: 1px solid var(--border, #334155); background: var(--bg-primary, #0f172a); color: var(--text-primary, #e2e8f0); font-size: 0.9rem; }
.hbl-search-input:focus { outline: none; border-color: var(--accent, #f39c12); }
.hbl-btn-save { background: var(--accent, #f39c12); color: #0f172a; border: none; border-radius: 6px; padding: 0.5rem 1.2rem; font-weight: bold; cursor: pointer; font-size: 0.9rem; white-space: nowrap; }
.hbl-btn-add { background: transparent; border: 1px solid var(--accent, #f39c12); color: var(--accent, #f39c12); border-radius: 6px; padding: 0.5rem 1.2rem; font-weight: bold; cursor: pointer; font-size: 0.9rem; white-space: nowrap; }
.hbl-btn-cancel { background: transparent; border: 1px solid var(--border, #475569); color: var(--text-primary, #e2e8f0); border-radius: 6px; padding: 0.6rem 1.2rem; cursor: pointer; }

/* Results */
.hbl-results { margin: 1rem 0; }
.hbl-disclaimer { color: var(--text-muted, #94a3b8); font-size: 0.8rem; font-style: italic; margin-bottom: 1rem; padding: 0.5rem; background: rgba(243,156,18,0.05); border-left: 3px solid var(--accent, #f39c12); border-radius: 4px; }
.hbl-table-wrap { overflow-x: auto; }
.hbl-table { width: 100%; border-collapse: collapse; background: var(--bg-secondary, #1e293b); border-radius: 12px; overflow: hidden; }
.hbl-table th { text-align: left; padding: 0.8rem; background: var(--bg-primary, #0f172a); color: var(--text-muted, #94a3b8); font-weight: 600; font-size: 0.85rem; border-bottom: 1px solid var(--border, #334155); }
.hbl-table td { padding: 0.8rem; color: var(--text-primary, #e2e8f0); font-size: 0.9rem; border-bottom: 1px solid #1e293b; }
.hbl-empty, .hbl-loading { color: var(--text-muted, #64748b); text-align: center; padding: 2rem; }

/* Add form */
.hbl-add-container { background: var(--bg-secondary, #1e293b); border-radius: 12px; padding: 1.5rem; margin-top: 1.5rem; border-left: 4px solid var(--accent, #f39c12); }
.hbl-add-container h3 { margin: 0 0 1rem; color: var(--accent, #f39c12); }
.hbl-form { display: flex; flex-wrap: wrap; gap: 1rem; }
.hbl-field { display: flex; flex-direction: column; min-width: 200px; flex: 1; }
.hbl-field label { font-size: 0.85rem; color: var(--text-muted, #94a3b8); margin-bottom: 0.3rem; }
.hbl-field input, .hbl-field textarea { padding: 0.6rem; border-radius: 6px; border: 1px solid var(--border, #334155); background: var(--bg-primary, #0f172a); color: var(--text-primary, #e2e8f0); font-size: 0.95rem; }
.hbl-field input:focus, .hbl-field textarea:focus { outline: none; border-color: var(--accent, #f39c12); }
.hbl-form-actions { display: flex; gap: 0.5rem; align-items: center; width: 100%; margin-top: 0.5rem; }

/* Toasts */
.hbl-toast { padding: 0.75rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: 0.9rem; font-weight: 500; animation: hbl-slide-in 0.2s ease; }
.hbl-toast-error { background: var(--danger, #7f1d1d); color: var(--danger-text, #fca5a5); border: 1px solid #ef4444; }
.hbl-toast-success { background: var(--success, #14532d); color: var(--success-text, #86efac); border: 1px solid #22c55e; }
@keyframes hbl-slide-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }