/* ============================================================================
   GCMS - Dynamic Stylesheet
   Cloud-Based Guidance and Counseling Management System
   Sulu State College
   ============================================================================ */

   <style
   :root {
    --primary-color: #0066cc;
    --primary-hover: #0052a3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    --border-radius-sm: 3px;
    --border-radius-md: 5px;
    --border-radius-lg: 10px;
    --border-radius-xl: 15px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 56px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; }
a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.btn-primary, .btn-secondary, .btn-success, .btn-warning, .btn-info, .btn-default {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
}
.btn-primary:hover, .btn-secondary:hover, .btn-success:hover, .btn-warning:hover, .btn-info:hover, .btn-default:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}
.btn-danger {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}
.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 12px;
}
.btn-lg {
    padding: 1rem 1.5rem;
    font-size: 16px;
}
.btn-block {
    display: block;
    width: 100%;
}
/* Outline Button Variants */
.btn-outline-primary, .btn-outline-secondary,
.btn-outline-success, .btn-outline-info, .btn-outline-warning {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    box-shadow: none;
}
.btn-outline-primary:hover, .btn-outline-secondary:hover,
.btn-outline-success:hover, .btn-outline-info:hover, .btn-outline-warning:hover {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}
/* AdminLTE Button Overrides */
.btn-app {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}
.btn-app:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}
.btn-tool { color: #0066cc; }
.btn-tool:hover { color: #0052a3; }

/* Forms */
.form-control, .form-select {
    display: block;
    width: 100%;
    padding: 0.5rem;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.form-control:focus, .form-select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}
.form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #333;
}
.form-group { margin-bottom: 1rem; }

/* Cards */
.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.card-header {
    padding: 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
}
.card-body { padding: 1rem; }
.card-footer {
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
}
.badge-primary { background-color: #0066cc; color: #fff; }
.badge-success { background-color: #28a745; color: #fff; }
.badge-danger { background-color: #dc3545; color: #fff; }
.badge-warning { background-color: #ffc107; color: #333; }
.badge-info { background-color: #17a2b8; color: #fff; }
.badge-secondary { background-color: #6c757d; color: #fff; }
/* Risk Level Badges */
.badge.risk-low { background-color: #28a745; color: #fff; }
.badge.risk-mild { background-color: #ffc107; color: #333; }
.badge.risk-moderate { background-color: #fd7e14; color: #fff; }
.badge.risk-severe { background-color: #dc3545; color: #fff; }
.badge.risk-extremely-severe { background-color: #721c24; color: #fff; }

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
}
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}
.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Tables */
.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    border-collapse: collapse;
}
.table th,
.table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
.table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}
.table tbody tr:hover { background-color: #f8f9fa; }
.table-danger { background-color: #f8d7da; }
.table-warning { background-color: #fff3cd; }
.table-info { background-color: #d1ecf1; }

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-primary { color: #0066cc !important; }
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }
.text-muted { color: #6c757d !important; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }

/* Sidebar Styles - Enhanced Black Theme */
.sidebar,
.main-sidebar,
.sidebar-dark-black {
    position: fixed;
    top: 56px;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .3);
    overflow-y: auto;
    background: #000000 !important;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.sidebar .nav-link,
.main-sidebar .nav-link,
.sidebar-dark-black .nav-link {
    font-weight: 500;
    color: #e0e0e0;
    padding: 0.75rem 1rem;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.sidebar .nav-link:hover,
.main-sidebar .nav-link:hover,
.sidebar-dark-black .nav-link:hover {
    color: #0066cc;
    background-color: rgba(0, 102, 204, 0.15);
    border-left-color: #0066cc;
    transform: translateX(2px);
}
.sidebar .nav-link.active,
.main-sidebar .nav-link.active,
.sidebar-dark-black .nav-link.active {
    color: #0066cc;
    background-color: rgba(0, 102, 204, 0.25);
    border-left: 3px solid #0066cc;
    font-weight: 600;
}
.sidebar .nav-link i,
.main-sidebar .nav-link i,
.sidebar-dark-black .nav-link i {
    width: 20px;
    margin-right: 8px;
    color: inherit;
}
.sidebar .user-panel,
.main-sidebar .user-panel,
.sidebar-dark-black .user-panel {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.sidebar .user-panel .info a,
.main-sidebar .user-panel .info a,
.sidebar-dark-black .user-panel .info a {
    color: #fff;
    font-weight: 600;
}
.sidebar .user-panel .info small,
.main-sidebar .user-panel .info small,
.sidebar-dark-black .user-panel .info small {
    color: #b0b0b0;
}
main {
    margin-top: 20px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

/* Enhanced Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

/* Risk Level Badges (from existing style.css) */
.risk-low { background-color: #28a745; color: #fff; }
.risk-mild { background-color: #ffc107; color: #000; }
.risk-moderate { background-color: #fd7e14; color: #fff; }
.risk-severe { background-color: #dc3545; color: #fff; }
.risk-extremely-severe { background-color: #721c24; color: #fff; }

/* Responsive Design */
@media (max-width: 768px) {
    body { font-size: 13px; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    .card { border-radius: 5px; }
    .btn {
        padding: 0.25rem 0.5rem;
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .sidebar, .navbar, .btn, .no-print { display: none !important; }
    main { margin: 0; padding: 0; }
    .card {
        border: 1px solid #000;
        box-shadow: none;
    }
    .btn, .alert, .badge {
        border: 1px solid #000;
    }
}

/* ============================================================================
   Minimalist Dashboard Styling
   ============================================================================ */

/* Dashboard Typography */
body.hold-transition,
.content-wrapper,
.card,
.small-box,
.navbar,
.sidebar {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
}

body.hold-transition {
    background: #f5f5f5;
}

/* Clean Card Styling */
.content-wrapper .card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    background: white;
}

.content-wrapper .card-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.25rem 1.5rem;
    border-radius: 10px 10px 0 0;
}

.content-wrapper .card-header h3 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.content-wrapper .card-body {
    padding: 1.5rem;
}

/* Minimalist Stat Boxes */
.small-box {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.small-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.small-box .inner {
    padding: 1.5rem;
}

.small-box .inner h3 {
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
}

.small-box .inner p {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.small-box .icon {
    opacity: 0.15;
    font-size: 4rem;
}

.small-box.bg-info {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
}

.small-box.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: white;
}

.small-box.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #333;
}

.small-box.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.small-box-footer {
    background: rgba(0,0,0,0.1);
    padding: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: inherit;
    font-weight: 500;
}

/* Clean Navbar */
.main-header.navbar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.main-header.navbar .nav-link {
    color: #333;
    font-weight: 500;
}

/* Clean Tables */
.content-wrapper .table {
    border-collapse: separate;
    border-spacing: 0;
}

.content-wrapper .table thead th {
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    color: #333;
    padding: 1rem;
    background: #f8f9fa;
}

.content-wrapper .table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.content-wrapper .table tbody tr:hover {
    background: #f8f9fa;
}

/* Clean Buttons */
.content-wrapper .btn {
    border-radius: 5px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.content-wrapper .btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
}

.content-wrapper .btn-primary:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

/* Clean Badges */
.content-wrapper .badge {
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: 500;
}

/* Content Header */
.content-header h1 {
    font-weight: 700;
    color: #333;
    font-size: 1.75rem;
}

/* Breadcrumb */
.content-wrapper .breadcrumb {
    background: transparent;
    padding: 0;
}

.content-wrapper .breadcrumb-item a {
    color: #0066cc;
    text-decoration: none;
}

/* Alerts */
.content-wrapper .alert {
    border-radius: 5px;
    border: none;
    padding: 1rem 1.25rem;
}

.content-wrapper .alert-info {
    background: #e7f3ff;
    color: #0066cc;
    border-left: 4px solid #0066cc;
}

/* List Groups */
.content-wrapper .list-group-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    padding: 1rem;
}

/* Footer */
.main-footer {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 1rem;
    color: #666;
}



?>

/* ============================================================================
   GCMS - Dynamic Stylesheet
   Cloud-Based Guidance and Counseling Management System
   Sulu State College
   ============================================================================ */

:root {
    --primary-color: #0066cc;
    --primary-hover: #0052a3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    --border-radius-sm: 3px;
    --border-radius-md: 5px;
    --border-radius-lg: 10px;
    --border-radius-xl: 15px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 56px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; }
a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.btn-primary, .btn-secondary, .btn-success, .btn-warning, .btn-info, .btn-default {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
}
.btn-primary:hover, .btn-secondary:hover, .btn-success:hover, .btn-warning:hover, .btn-info:hover, .btn-default:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}
.btn-danger {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}
.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 12px;
}
.btn-lg {
    padding: 1rem 1.5rem;
    font-size: 16px;
}
.btn-block {
    display: block;
    width: 100%;
}
/* Outline Button Variants */
.btn-outline-primary, .btn-outline-secondary,
.btn-outline-success, .btn-outline-info, .btn-outline-warning {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    box-shadow: none;
}
.btn-outline-primary:hover, .btn-outline-secondary:hover,
.btn-outline-success:hover, .btn-outline-info:hover, .btn-outline-warning:hover {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}
/* AdminLTE Button Overrides */
.btn-app {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}
.btn-app:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}
.btn-tool { color: #0066cc; }
.btn-tool:hover { color: #0052a3; }

/* Forms */
.form-control, .form-select {
    display: block;
    width: 100%;
    padding: 0.5rem;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.form-control:focus, .form-select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}
.form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #333;
}
.form-group { margin-bottom: 1rem; }

/* Cards */
.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.card-header {
    padding: 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
}
.card-body { padding: 1rem; }
.card-footer {
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
}
.badge-primary { background-color: #0066cc; color: #fff; }
.badge-success { background-color: #28a745; color: #fff; }
.badge-danger { background-color: #dc3545; color: #fff; }
.badge-warning { background-color: #ffc107; color: #333; }
.badge-info { background-color: #17a2b8; color: #fff; }
.badge-secondary { background-color: #6c757d; color: #fff; }
/* Risk Level Badges */
.badge.risk-low { background-color: #28a745; color: #fff; }
.badge.risk-mild { background-color: #ffc107; color: #333; }
.badge.risk-moderate { background-color: #fd7e14; color: #fff; }
.badge.risk-severe { background-color: #dc3545; color: #fff; }
.badge.risk-extremely-severe { background-color: #721c24; color: #fff; }

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
}
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}
.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Tables */
.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    border-collapse: collapse;
}
.table th,
.table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
.table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}
.table tbody tr:hover { background-color: #f8f9fa; }
.table-danger { background-color: #f8d7da; }
.table-warning { background-color: #fff3cd; }
.table-info { background-color: #d1ecf1; }

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-primary { color: #0066cc !important; }
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }
.text-muted { color: #6c757d !important; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }

/* Sidebar Styles - Enhanced Black Theme */
.sidebar,
.main-sidebar,
.sidebar-dark-black {
    position: fixed;
    top: 56px;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .3);
    overflow-y: auto;
    background: #000000 !important;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.sidebar .nav-link,
.main-sidebar .nav-link,
.sidebar-dark-black .nav-link {
    font-weight: 500;
    color: #e0e0e0;
    padding: 0.75rem 1rem;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.sidebar .nav-link:hover,
.main-sidebar .nav-link:hover,
.sidebar-dark-black .nav-link:hover {
    color: #0066cc;
    background-color: rgba(0, 102, 204, 0.15);
    border-left-color: #0066cc;
    transform: translateX(2px);
}
.sidebar .nav-link.active,
.main-sidebar .nav-link.active,
.sidebar-dark-black .nav-link.active {
    color: #0066cc;
    background-color: rgba(0, 102, 204, 0.25);
    border-left: 3px solid #0066cc;
    font-weight: 600;
}
.sidebar .nav-link i,
.main-sidebar .nav-link i,
.sidebar-dark-black .nav-link i {
    width: 20px;
    margin-right: 8px;
    color: inherit;
}
.sidebar .user-panel,
.main-sidebar .user-panel,
.sidebar-dark-black .user-panel {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.sidebar .user-panel .info a,
.main-sidebar .user-panel .info a,
.sidebar-dark-black .user-panel .info a {
    color: #fff;
    font-weight: 600;
}
.sidebar .user-panel .info small,
.main-sidebar .user-panel .info small,
.sidebar-dark-black .user-panel .info small {
    color: #b0b0b0;
}
main {
    margin-top: 20px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

/* Enhanced Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

/* Risk Level Badges (from existing style.css) */
.risk-low { background-color: #28a745; color: #fff; }
.risk-mild { background-color: #ffc107; color: #000; }
.risk-moderate { background-color: #fd7e14; color: #fff; }
.risk-severe { background-color: #dc3545; color: #fff; }
.risk-extremely-severe { background-color: #721c24; color: #fff; }

/* Responsive Design */
@media (max-width: 768px) {
    body { font-size: 13px; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    .card { border-radius: 5px; }
    .btn {
        padding: 0.25rem 0.5rem;
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .sidebar, .navbar, .btn, .no-print { display: none !important; }
    main { margin: 0; padding: 0; }
    .card {
        border: 1px solid #000;
        box-shadow: none;
    }
    .btn, .alert, .badge {
        border: 1px solid #000;
    }
}

/* ============================================================================
   Minimalist Dashboard Styling
   ============================================================================ */

/* Dashboard Typography */
body.hold-transition,
.content-wrapper,
.card,
.small-box,
.navbar,
.sidebar {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
}

body.hold-transition {
    background: #f5f5f5;
}

/* Clean Card Styling */
.content-wrapper .card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    background: white;
}

.content-wrapper .card-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.25rem 1.5rem;
    border-radius: 10px 10px 0 0;
}

.content-wrapper .card-header h3 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.content-wrapper .card-body {
    padding: 1.5rem;
}

/* Minimalist Stat Boxes */
.small-box {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.small-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.small-box .inner {
    padding: 1.5rem;
}

.small-box .inner h3 {
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
}

.small-box .inner p {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.small-box .icon {
    opacity: 0.15;
    font-size: 4rem;
}

.small-box.bg-info {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
}

.small-box.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: white;
}

.small-box.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #333;
}

.small-box.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.small-box-footer {
    background: rgba(0,0,0,0.1);
    padding: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: inherit;
    font-weight: 500;
}

/* Clean Navbar */
.main-header.navbar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.main-header.navbar .nav-link {
    color: #333;
    font-weight: 500;
}

/* Clean Tables */
.content-wrapper .table {
    border-collapse: separate;
    border-spacing: 0;
}

.content-wrapper .table thead th {
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    color: #333;
    padding: 1rem;
    background: #f8f9fa;
}

.content-wrapper .table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.content-wrapper .table tbody tr:hover {
    background: #f8f9fa;
}

/* Clean Buttons */
.content-wrapper .btn {
    border-radius: 5px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.content-wrapper .btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
}

.content-wrapper .btn-primary:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

/* Clean Badges */
.content-wrapper .badge {
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: 500;
}

/* Content Header */
.content-header h1 {
    font-weight: 700;
    color: #333;
    font-size: 1.75rem;
}

/* Breadcrumb */
.content-wrapper .breadcrumb {
    background: transparent;
    padding: 0;
}

.content-wrapper .breadcrumb-item a {
    color: #0066cc;
    text-decoration: none;
}

/* Alerts */
.content-wrapper .alert {
    border-radius: 5px;
    border: none;
    padding: 1rem 1.25rem;
}

.content-wrapper .alert-info {
    background: #e7f3ff;
    color: #0066cc;
    border-left: 4px solid #0066cc;
}

/* List Groups */
.content-wrapper .list-group-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    padding: 1rem;
}

/* Footer */
.main-footer {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 1rem;
    color: #666;
}


</style>