/* Seal Tracker — Custom styles (supplements Tailwind CDN) */

.nav-tab {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.15s;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}
.nav-tab:hover { color: #F96302; }
.nav-tab.active { color: #F96302; border-bottom-color: #F96302; }
.nav-tab.hidden { display: none; }

.stat-card {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: white;
    transition: box-shadow 0.15s;
}
.stat-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

.view-panel { animation: fadeIn 0.12s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.inp {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    outline: none;
    transition: border-color 0.15s;
}
.inp:focus { border-color: #F96302; }

.lbl {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.125rem;
}

.ops-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.15s;
}
.ops-tab:hover { border-color: #F96302; color: #F96302; }
.ops-tab.active { background: #F96302; color: white; border-color: #F96302; }

.ops-panel { animation: fadeIn 0.12s ease-out; }

.scan-mode-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.scan-mode-btn:hover { border-color: #F96302; }
.scan-mode-btn.active { border-color: #F96302; background: #FFF7ED; color: #F96302; }

.audit-mode {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background: white;
    cursor: pointer;
}
.audit-mode:hover { border-color: #F96302; }
.audit-mode.active { background: #F96302; color: white; border-color: #F96302; }

.audit-panel { animation: fadeIn 0.12s ease-out; }

.compliance-tab.active { background: #F96302; color: white; border-color: #F96302; }
.scap-filter-btn.active { background: #F96302; color: white; border-color: #F96302; }
.box-filter-btn.active { background: #F96302; color: white; border-color: #F96302; }
