/* Custom overrides */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Hide scrollbar for gallery if needed */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dashboard-nav-btn {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
    background: #fff;
    transition: all 0.2s ease;
}

.dashboard-nav-btn:hover {
    border-color: #cbd5f5;
    color: #0f172a;
}

.dashboard-nav-btn.active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
    box-shadow: 0 15px 25px -22px rgba(15, 23, 42, 0.8);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.35rem;
}

.form-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.15);
}

.export-btn {
    border: 1px solid #d4dbe8;
    border-radius: 9999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    transition: all 0.2s ease;
}

.export-btn:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.highlight-filter-btn {
    flex: 1;
    border: none;
    border-radius: 9999px;
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.highlight-filter-btn:hover {
    color: #0f172a;
}

.highlight-filter-btn.active {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 12px 25px -15px rgba(15, 23, 42, 0.9);
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-pill:hover {
    color: #16a34a;
    border-color: #cbd5f5;
    box-shadow: 0 10px 20px -18px rgba(15, 23, 42, 0.8);
}