/* ============================================
   SmartCampus Admin Portal - Main Stylesheet
   ============================================ */

/* CSS Variables - Professional School Management Theme */
:root {
    /* Primary Colors - Professional Blue (Education/Trust) */
    --primary-color: #1e40af;        /* Deep professional blue */
    --primary-dark: #1e3a8a;         /* Darker blue for hover */
    --primary-light: #3b82f6;        /* Lighter blue for accents */
    --primary-lighter: #60a5fa;      /* Light blue for highlights */
    
    /* Secondary Colors */
    --secondary-color: #475569;      /* Neutral gray-blue */
    --secondary-light: #64748b;      /* Light gray-blue */
    
    /* Status Colors - Professional & Accessible */
    --success-color: #059669;         /* Professional green */
    --success-light: #10b981;        /* Light green */
    --warning-color: #d97706;        /* Professional amber */
    --warning-light: #f59e0b;        /* Light amber */
    --danger-color: #dc2626;         /* Professional red */
    --danger-light: #ef4444;         /* Light red */
    --info-color: #0284c7;           /* Professional cyan */
    
    /* Background Colors - Clean & Professional */
    --bg-primary: #0f172a;          /* Main dark background */
    --bg-secondary: #1e293b;         /* Secondary dark background */
    --bg-card: #1e293b;              /* Card background */
    --bg-card-hover: #334155;        /* Card hover state */
    --bg-input: #0f172a;             /* Input background */
    --bg-sidebar: #0f172a;           /* Sidebar background */
    --bg-navbar: #1e293b;            /* Navbar background */
    
    /* Border & Divider Colors */
    --border-color: #334155;         /* Standard border */
    --border-light: #475569;         /* Light border */
    --divider-color: #334155;        /* Divider lines */
    
    /* Text Colors - High Contrast for Readability */
    --text-primary: #f8fafc;          /* Primary text (white) */
    --text-secondary: #cbd5e1;        /* Secondary text (light gray) */
    --text-muted: #94a3b8;            /* Muted text */
    --text-disabled: #64748b;        /* Disabled text */
    
    /* Legacy text color variables for compatibility */
    --text-color: var(--text-primary);
    --text-light: var(--text-secondary);
    
    /* Accent Colors for Icons & Badges */
    --accent-students: #3b82f6;       /* Blue for students */
    --accent-courses: #10b981;        /* Green for courses */
    --accent-units: #f59e0b;          /* Amber for units */
    --accent-lecturers: #8b5cf6;      /* Purple for lecturers */
    --accent-departments: #ec4899;    /* Pink for departments */
    
    /* Shadows - Subtle & Professional */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    
    /* Spacing & Layout */
    --sidebar-width: 260px;
    --navbar-height: 70px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Legacy variables for compatibility */
    --dark-color: var(--bg-primary);
    --light-color: var(--bg-secondary);
    --white: var(--bg-card);
    --bg-hover: var(--bg-card-hover);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-color);
    line-height: 1.6;
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.login-page {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #1e3a8a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.logo-container i {
    font-size: 36px;
    color: var(--primary-color);
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
}

.login-subtitle {
    color: var(--text-light);
    font-size: 14px;
}

/* Form Styles */
.login-form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.form-label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--bg-input);
    color: var(--text-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
    background: var(--bg-secondary);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--primary-dark);
}

.form-help-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 12px;
}

/* Message Styles */
.error-message,
.success-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--danger-color);
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

/* ============================================
   DASHBOARD PAGE STYLES
   ============================================ */

.dashboard-page {
    display: flex;
    min-height: 100vh;
}

/* Top Navbar */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: left 0.3s;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
}

.college-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.college-brand i {
    color: var(--primary-color);
    font-size: 24px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Notification Dropdown */
.notification-dropdown {
    position: relative;
}

.notification-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.notification-btn:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.notification-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--danger-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    display: none;
}

.notification-badge.show {
    display: block;
}

.notification-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1001;
}

.notification-menu.active {
    display: block;
}

.notification-header {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.mark-all-read {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.no-notifications {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s;
}

.notification-item:hover {
    background: var(--light-color);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item.priority-urgent {
    border-left: 3px solid var(--danger-color);
}

.notification-item.priority-high {
    border-left: 3px solid #f59e0b;
}

.notification-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.notification-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.notification-footer a:hover {
    text-decoration: underline;
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.profile-btn:hover {
    background: var(--light-color);
}

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.profile-name {
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.profile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1001;
    overflow: hidden;
}

.profile-menu.active {
    display: block;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.profile-menu-item:hover {
    background: var(--bg-hover);
}

.profile-menu-item i {
    width: 20px;
    color: var(--text-light);
}

.profile-menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: var(--navbar-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--navbar-height));
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    transition: transform 0.3s;
    z-index: 999;
}

.sidebar-nav {
    padding: 16px 0;
}

.nav-menu {
    list-style: none;
}

.nav-item {
    margin-bottom: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    background: var(--bg-card-hover);
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.nav-item.active .nav-link {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.nav-link i {
    width: 20px;
    font-size: 18px;
}

.nav-item.logout-item .nav-link {
    color: var(--danger-color);
}

.nav-item.logout-item .nav-link:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    margin-top: var(--navbar-height);
    padding: 32px;
    width: calc(100% - var(--sidebar-width));
    transition: margin-left 0.3s;
}

/* Page Header */
.page-header {
    margin-bottom: 32px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

/* Overview Cards */
.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.overview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.card-icon.students {
    background: linear-gradient(135deg, var(--accent-students) 0%, var(--primary-dark) 100%);
}

.card-icon.departments {
    background: linear-gradient(135deg, var(--accent-departments) 0%, #be185d 100%);
}

.card-icon.courses {
    background: linear-gradient(135deg, var(--accent-courses) 0%, #059669 100%);
}

.card-icon.lecturers {
    background: linear-gradient(135deg, var(--accent-lecturers) 0%, #7c3aed 100%);
}

.card-icon.units {
    background: linear-gradient(135deg, var(--accent-units) 0%, #d97706 100%);
}

.card-content {
    flex: 1;
}

.card-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.card-change {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-change.positive {
    color: var(--success-color);
}

.card-change.negative {
    color: var(--danger-color);
}

.card-change.neutral {
    color: var(--text-light);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title i {
    color: var(--primary-color);
}

.card-action {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.card-action:hover {
    color: var(--primary-dark);
}

.card-body {
    padding: 24px;
}

/* Announcements List */
.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.announcement-item {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.announcement-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.announcement-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.announcement-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.announcement-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.announcement-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.activity-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.activity-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.activity-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.activity-content {
    flex: 1;
}

.activity-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 4px;
}

.activity-time {
    font-size: 12px;
    color: var(--text-light);
}

/* Sidebar Overlay (Mobile) */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s;
}

.modal-large {
    max-width: 900px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--bg-hover);
    color: var(--text-color);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.required {
    color: var(--danger-color);
}

.error-message {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--danger-color);
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--text-light);
}

/* Filters Bar */
.filters-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: end;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    background: var(--bg-secondary);
    color: var(--text-color);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================================
   Dashboard Sections
   ============================================ */

.dashboard-section {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Controls for Students Section */
.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.filter-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}

/* Table Styles */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: var(--bg-secondary);
}

.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-color);
}

.data-table tbody tr:hover {
    background: var(--bg-card-hover);
    transition: background-color 0.2s ease;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.loading-row {
    text-align: center;
    padding: 40px !important;
    color: var(--text-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button:hover:not(:disabled) {
    background: var(--bg-hover);
}

.pagination button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Badges */
.badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.badge-active {
    background: rgba(5, 150, 105, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.badge-inactive {
    background: rgba(220, 38, 38, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.badge-pending {
    background: rgba(217, 119, 6, 0.2);
    color: var(--warning-color);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.badge-success {
    background: rgba(5, 150, 105, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.badge-warning {
    background: rgba(217, 119, 6, 0.2);
    color: var(--warning-color);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.badge-danger {
    background: rgba(220, 38, 38, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.badge-info {
    background: rgba(2, 132, 199, 0.2);
    color: var(--info-color);
    border: 1px solid rgba(2, 132, 199, 0.3);
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--dark-color);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-loader.hidden {
    display: none;
}

/* FAB */
.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

/* Toast */
.toast-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.3s;
    border-left: 4px solid;
}

.toast.success {
    border-left-color: var(--success-color);
}

.toast.error {
    border-left-color: var(--danger-color);
}

.toast.info {
    border-left-color: var(--info-color);
}

.toast.warning {
    border-left-color: var(--warning-color);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-overlay.hidden {
    display: none;
}

/* ============================================
   SPA Navigation Styles
   ============================================ */

/* SPA Loader */
.spa-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.spa-loader.active {
    opacity: 1;
    visibility: visible;
}

.spa-loader-content {
    text-align: center;
    color: var(--text-color);
}

.spa-spinner {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

.spa-loader-content p {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--text-light);
}

/* SPA Error State */
.spa-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem;
}

.spa-error-content {
    text-align: center;
    max-width: 500px;
}

.spa-error-content i {
    font-size: 4rem;
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.spa-error-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Main Content Loading State */
.main-content.loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Smooth Content Transitions */
.main-content {
    transition: opacity 0.3s ease;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content > * {
    animation: fadeIn 0.3s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Registration Page Styles - Compact & Vibrant */
.register-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.register-container {
    width: 100%;
    max-width: 900px;
}

.register-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 35px;
    animation: slideUp 0.5s ease-out;
}

.register-header {
    text-align: center;
    margin-bottom: 25px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.logo-container i {
    font-size: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-container h1 {
    font-size: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.register-subtitle {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 6px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-section {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s;
    margin-bottom: 0;
}

.form-section:hover {
    background: rgba(51, 65, 85, 0.4);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.section-title i {
    color: #667eea;
    font-size: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-label i {
    color: #667eea;
    font-size: 13px;
}

.required {
    color: #ef4444;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.form-input::placeholder {
    color: var(--text-light);
    opacity: 0.5;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #667eea;
}

.error-message {
    font-size: 12px;
    color: #ef4444;
    margin-top: 2px;
    min-height: 16px;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.register-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 14px;
}

.register-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.register-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .register-card {
        padding: 24px;
    }
    
    .form-section {
        padding: 14px;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 24px 16px;
    }

    .overview-cards {
        grid-template-columns: 1fr;
    }

    .navbar-content {
        padding: 0 16px;
    }

    .college-brand span {
        display: none;
    }

    .notification-menu {
        width: calc(100vw - 32px);
        right: 16px;
    }

    .profile-menu {
        right: 16px;
    }
}

/* ============================================
   Section-Specific Accent Colors
   ============================================ */

/* Students Section */
#students-section .card-title i,
#students-section .nav-item.active .nav-link i {
    color: var(--accent-students);
}

/* Courses Section */
#courses-section .card-title i,
#courses-section .nav-item.active .nav-link i {
    color: var(--accent-courses);
}

/* Units Section */
#units-section .card-title i,
#units-section .nav-item.active .nav-link i {
    color: var(--accent-units);
}

/* Lecturers Section */
#lecturers-section .card-title i,
#lecturers-section .nav-item.active .nav-link i {
    color: var(--accent-lecturers);
}

/* Departments Section */
#departments-section .card-title i,
#departments-section .nav-item.active .nav-link i {
    color: var(--accent-departments);
}

/* Tabs Styling */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Form Select Styling */
.form-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--bg-input);
    color: var(--text-primary);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
    background: var(--bg-secondary);
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Button Icon Styling */
.btn-icon {
    padding: 8px 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
}

.btn-icon.btn-info {
    color: var(--info-color);
}

.btn-icon.btn-info:hover {
    background: rgba(2, 132, 199, 0.1);
    color: var(--info-color);
}

.btn-icon.btn-success {
    color: var(--success-color);
}

.btn-icon.btn-success:hover {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success-color);
}

.btn-icon.btn-warning {
    color: var(--warning-color);
}

.btn-icon.btn-warning:hover {
    background: rgba(217, 119, 6, 0.1);
    color: var(--warning-color);
}

.btn-icon.btn-danger {
    color: var(--danger-color);
}

.btn-icon.btn-danger:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger-color);
}

/* Settings Display Grid */
.settings-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.settings-display-grid .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-display-grid label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 13px;
}

.settings-display-grid span {
    color: var(--text-primary);
    font-size: 15px;
}

@media (max-width: 480px) {
    .login-card {
        padding: 32px 24px;
    }

    .page-title {
        font-size: 24px;
    }

    .overview-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .settings-display-grid {
        grid-template-columns: 1fr;
    }
}

/* Step-based Form Styles */
.form-step {
    display: none;
    padding: 24px;
}

.form-step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--text-color);
}

.step-description {
    margin: -16px 0 24px 48px;
    color: var(--text-secondary);
    font-size: 14px;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Units Selection Container */
.units-selection-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
}

.unit-selection-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.unit-selection-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
    transform: translateY(-2px);
}

.unit-selection-card.selected {
    border-color: var(--primary-color);
    background: rgba(30, 64, 175, 0.1);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.unit-selection-card input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.unit-code {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.unit-name {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.unit-lecturer {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.unit-selection-card.already-assigned {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--bg-secondary);
}

.unit-selection-card.already-assigned .unit-code::after {
    content: " (Already Assigned)";
    font-size: 12px;
    color: var(--text-muted);
    font-weight: normal;
}

.loading-state {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.loading-state i {
    font-size: 24px;
    margin-right: 8px;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-disabled);
}

.empty-state p {
    margin: 0;
    font-size: 14px;
}

/* ============================================
   Announcements Styles
   ============================================ */

/* Priority Badges */
.badge-urgent {
    background: rgba(220, 38, 38, 0.2);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-high {
    background: rgba(217, 119, 6, 0.2);
    color: var(--warning-color);
    border: 1px solid var(--warning-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-normal {
    background: rgba(30, 64, 175, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Target Badges */
.badge-target-all-students {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid var(--success-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-target-all-lecturers {
    background: rgba(30, 64, 175, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-target-individual {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid #8b5cf6;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-secondary {
    background: rgba(100, 116, 139, 0.2);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-icon {
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    background: transparent;
}

.btn-view {
    color: var(--info-color);
}

.btn-view:hover {
    background: rgba(2, 132, 199, 0.1);
}

.btn-edit {
    color: var(--primary-color);
}

.btn-edit:hover {
    background: rgba(30, 64, 175, 0.1);
}

.btn-delete {
    color: var(--danger-color);
}

.btn-delete:hover {
    background: rgba(220, 38, 38, 0.1);
}

/* Modal Large */
.modal-large {
    max-width: 800px;
    width: 90%;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--text-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Multi-select styling */
select[multiple] {
    min-height: 200px;
    padding: 8px;
}

select[multiple] option {
    padding: 8px;
    margin: 2px 0;
    border-radius: 4px;
}

select[multiple] option:checked {
    background: var(--primary-color);
    color: white;
}

.selected-count {
    margin-top: 12px;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.field-error {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--danger-color);
    min-height: 16px;
}

/* Announcement View */
.announcement-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.view-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.view-field label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-value {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

.view-value strong {
    font-size: 16px;
}

/* Form Help Text */
.form-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

