/* HSNZ EduCert — Main CSS */

body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    background-color: #f4f6f9;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.sidebar .nav-link {
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.875rem;
    transition: background 0.15s;
}
.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: rgba(255,255,255,0.15);
}
.sidebar-brand {
    font-size: 1rem;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Auth */
.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 1rem;
}

/* Cards */
.card {
    border-radius: 10px;
}

/* Tables */
.table th {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6c757d;
}

/* Portal */
.portal-header {
    background: linear-gradient(135deg, #1a3a5c, #2563eb);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

/* Status panel */
.status-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}
.status-item:last-child {
    border-bottom: none;
}
.status-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
