/* Global styles for Grievance Portal */

/* Navbar Styles */
#navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(20, 23, 40, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: #a78bfa;
}

.nav-logo {
    font-weight: 700;
    color: #e2e8f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Status Colors used in Dashboards */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gray */
.status-pending {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

/* Blue */
.status-review {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

/* Orange */
.status-investigation {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Green */
.status-resolved {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

/* Red */
.status-rejected {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
}

/* Body adjustment for fixed navbar */
body {
    padding-top: 70px !important;
}
