/* Whistleblowing Portal - Custom styles */

:root {
    --wb-primary: #1a56db;
    --wb-accent:  #0ea5e9;
    --wb-hero-bg: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
}

/* Hero */
.wb-hero {
    background: var(--wb-hero-bg);
    color: #fff;
    padding: 80px 0 60px;
}

.wb-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
}

/* Cards */
.card-action {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform .2s, box-shadow .2s;
}

.card-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.card-action .card-icon {
    font-size: 3rem;
    margin-bottom: .5rem;
}

/* Guarantee icons */
.guarantee-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

/* Form */
.wb-form-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.form-label {
    font-weight: 500;
}

/* Tracking code display */
.tracking-code-box {
    background: #f0f9ff;
    border: 2px dashed var(--wb-accent);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.tracking-code {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .25rem;
    color: var(--wb-primary);
}

/* Status badges */
.status-card {
    border-left: 5px solid var(--wb-primary);
    border-radius: 8px;
}

/* Admin sidebar */
.admin-sidebar {
    min-height: 100vh;
    background: #1e293b;
}

.admin-sidebar .nav-link {
    color: #94a3b8;
    padding: .65rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 2px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.admin-sidebar .nav-link i {
    width: 20px;
}

.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: .75rem 1.5rem;
}

/* Responsive admin table */
@media (max-width: 768px) {
    .wb-hero h1 { font-size: 1.8rem; }
    .tracking-code { font-size: 1.4rem; letter-spacing: .1rem; }
}
