body {
background-color: #f8fafc;
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}

/* Sidebar */
.sidebar {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 260px;
background: linear-gradient(180deg, #0f172a, #0b1120);
color: white;
transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 1040;
box-shadow: 4px 0 12px rgba(0, 0, 0, 0.12);
}

.sidebar.collapsed {
width: 80px;
}

.sidebar h5 {
font-size: 1.25rem;
letter-spacing: 0.8px;
font-weight: 600;
opacity: 0.9;
text-align: center;
margin-bottom: 2rem;
}

/* Nav Links */
.sidebar .nav-link {
color: #94a3b8;
font-weight: 500;
padding: 12px 20px;
margin: 6px 16px;
border-radius: 10px;
display: flex;
align-items: center;
white-space: nowrap;
transition: all 0.25s ease;
height: 48px;
position: relative;
}

.sidebar .nav-link i {
font-size: 1.25rem;
min-width: 24px;
text-align: center;
}

.sidebar .nav-link .label {
margin-left: 5px;
}

.sidebar .nav-link.active {
background: linear-gradient(90deg, #3b82f6, #2563eb);
color: white;
box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.sidebar .nav-link:hover {
background-color: rgba(255, 255, 255, 0.08);
color: #e2e8f0;
}

/* Submenu */
.sidebar .submenu {
list-style: none;
padding-left: 0;
margin-top: 6px;
}

.sidebar .submenu .nav-link {
font-size: 0.92rem;
padding-left: 40px !important;
margin: 3px 16px;
color: #cbd5e1;
font-weight: 400;
height: 40px;
}

.sidebar .submenu .submenu .nav-link {
padding-left: 56px !important;
}

.submenu-arrow {
margin-left: auto;
font-size: 0.85rem;
transition: transform 0.2s ease;
min-width: 16px;
text-align: center;
}

.nav-link[aria-expanded="true"] .submenu-arrow {
transform: rotate(180deg);
}

/* === COLLAPSED MODE === */
.sidebar.collapsed {
width: 80px;
}

.sidebar.collapsed .nav-link {
justify-content: center !important;
padding: 0 !important;
margin: 8px 0 !important;
height: 48px !important;
width: 100% !important;
}

.sidebar.collapsed .nav-link > i:first-child {
display: block !important;
margin: 0 !important;
min-width: 24px !important;
width: 24px !important;
text-align: center !important;
font-size: 1.25rem !important;
}

/* Hide everything except the first icon */
.sidebar.collapsed .nav-link > :not(i:first-child) {
display: none !important;
}

.sidebar.collapsed .submenu {
display: none !important;
}

/* Main Content */
.main-content {
margin-left: 260px;
transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
min-height: 100vh;
}

.main-content.collapsed {
margin-left: 80px;
}

/* Header */
.header {
background: white;
border-radius: 16px;
padding: 14px 24px;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
margin-bottom: 32px;
position: sticky;
top: 0;
z-index: 1030; /* Bootstrap's navbar z-index is 1030; this ensures it stays on top */
}
/* Toggle Button */
.btn-toggle-sidebar {
background: linear-gradient(135deg, #3b82f6, #2563eb);
border: none;
color: white;
border-radius: 10px;
width: 42px;
height: 42px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
transition: all 0.25s ease;
}

.btn-toggle-sidebar:hover {
transform: scale(1.05);
box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
}

/* Profile */
.profile-img img {
width: 46px;
height: 46px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #e2e8f0;
}

.profile-initials {
width: 46px;
height: 46px;
border-radius: 50%;
background: linear-gradient(135deg, #3b82f6, #2563eb);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 1.1rem;
}

/* Hide/show based on sidebar state */
.sidebar:not(.collapsed) ~ .main-content .mini,
.sidebar.collapsed ~ .main-content .full {
display: none !important;
}

.sidebar.collapsed ~ .main-content .mini {
display: flex !important;
}

/* Dashboard Cards */
.dashboard-card {
border: none;
border-radius: 18px;
background: white;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
padding: 24px;
text-align: left;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}


.dashboard-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 6px;
height: 100%;
background: linear-gradient(to bottom, #3b82f6, #2563eb);
}

.dashboard-card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.dashboard-card h2 {
font-size: 2.1rem;
margin: 8px 0 0;
color: #0f172a;
font-weight: 700;
}

.dashboard-card small {
color: #64748b;
font-weight: 500;
letter-spacing: 0.3px;
}

/* Recent Activity */
.recent-activity-card {
border: none;
border-radius: 16px;
background: white;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
padding: 20px;
}

.recent-activity-card .list-group-item {
border: none;
padding: 12px 0;
display: flex;
align-items: flex-start;
gap: 12px;
}

.recent-activity-card .list-group-item i {
color: #3b82f6;
margin-top: 4px;
}

.recent-activity-card .timestamp {
font-size: 0.8rem;
color: #94a3b8;
margin-left: auto;
}

/* Toast */
.toast-container {
position: fixed;
top: 24px;
right: 24px;
z-index: 1080;
}

.toast {
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Luxury Dropdown */
.bg-light-subtle {
background-color: #f8f9fa !important;
}

/* Form Controls */
.form-label {
font-weight: 600;
font-size: 0.92rem;
color: #334155;
margin-bottom: 6px;
}

.form-control,
.form-select {
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 10px 14px;
font-size: 0.95rem;
transition: all 0.2s ease;
background-color: #fff;
box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.form-control:focus,
.form-select:focus {
border-color: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
outline: none;
}

.form-control:disabled,
.form-select:disabled {
background-color: #f8fafc;
color: #94a3b8;
}

/* Buttons */
.btn {
padding: 10px 18px;
font-weight: 600;
border-radius: 10px;
transition: all 0.2s ease;
font-size: 0.95rem;
}

.btn-primary {
background: linear-gradient(135deg, #4f46e5, #3b82f6);
border: none;
box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.btn-outline-secondary {
border-color: #cbd5e1;
color: #475569;
}
.btn-outline-secondary:hover {
background-color: #f8fafc;
border-color: #94a3b8;
}

/* Unified Card */
.card {
border: none;
border-radius: 16px;
background: white;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
padding: 24px;
margin-bottom: 24px;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.card-title {
font-weight: 700;
font-size: 1.25rem;
color: #0f172a;
margin-bottom: 16px;
}

/* Select2 Container */
.select2-container--default .select2-selection--single {
border: 1px solid #e2e8f0 !important;
border-radius: 10px !important;
height: 42px !important;
background-color: #fff !important;
box-shadow: 0 1px 2px rgba(0,0,0,0.03) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
line-height: 40px !important;
padding-left: 14px !important;
color: #1e293b !important;
font-size: 0.95rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 40px !important;
width: 30px !important;
}

.select2-container--default.select2-container--focus .select2-selection--single {
border-color: #3b82f6 !important;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
}

/* Dropdown */
.select2-dropdown {
border: 1px solid #e2e8f0 !important;
border-radius: 10px !important;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
background: white !important;
}

.select2-results__option {
padding: 8px 14px !important;
font-size: 0.95rem !important;
color: #334155 !important;
}

.select2-results__option--highlighted[aria-selected] {
background-color: #dbeafe !important;
color: #1d4ed8 !important;
}

.select2-results__option[aria-selected="true"] {
background-color: #eff6ff !important;
color: #1e40af !important;
}

/* Modal */
.modal-content {
border: none;
border-radius: 16px;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
overflow: hidden;
}

.modal-header {
border: none;
padding: 24px 24px 16px;
}

.modal-title {
font-weight: 700;
font-size: 1.35rem;
color: #0f172a;
}

.modal-header .btn-close {
width: 32px;
height: 32px;
padding: 0;
opacity: 0.6;
transition: opacity 0.2s;
}

.modal-header .btn-close:hover {
opacity: 1;
background: #f1f5f9;
border-radius: 6px;
}

.modal-body {
padding: 16px 24px;
}

.modal-footer {
border: none;
padding: 16px 24px 24px;
display: flex;
justify-content: flex-end;
gap: 12px;
}

/* Ensure modal form fields match */
.modal-body .form-label,
.modal-body .form-control,
.modal-body .form-select {
font-size: 0.95rem;
}

/* Spacing Utilities (optional but helpful) */
.mb-4 { margin-bottom: 24px !important; }
.mb-3 { margin-bottom: 16px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mt-4 { margin-top: 24px !important; }
.gap-3 > * + * { margin-top: 16px; }


/* ===== DataTables – Harmonized with Operation Suite ===== */
.dataTables_wrapper {
margin-top: 24px;
}

/* Table container */
.dataTables_wrapper .dataTables_scrollBody,
.dataTables_wrapper table {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

table.dataTable {
border-collapse: separate;
border-spacing: 0;
width: 100%;
margin: 0;
background: white;
}

table.dataTable thead th {
background: #f8fafc;
color: #334155;
font-weight: 600;
padding: 14px 16px;
font-size: 0.92rem;
text-transform: none;
border: none;
border-bottom: 1px solid #e2e8f0;
}

table.dataTable tbody td {
padding: 12px 16px;
color: #1e293b;
font-size: 0.95rem;
border: none;
border-bottom: 1px solid #f1f5f9;
}

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

table.dataTable tbody tr:hover {
background-color: #f8fafc;
}

/* Controls: Length, Search, Info, Paging */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
padding: 8px 0;
}

/* Search input */
.dataTables_wrapper .dataTables_filter input {
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 8px 12px;
font-size: 0.9rem;
width: auto;
min-width: 200px;
margin-left: 8px;
}

/* Pagination */
.dataTables_wrapper .paginate_button {
padding: 6px 12px !important;
margin: 0 2px !important;
border-radius: 8px !important;
border: none !important;
background: white !important;
color: #475569 !important;
font-weight: 500 !important;
font-size: 0.9rem !important;
box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
transition: all 0.2s ease !important;
}

.dataTables_wrapper .paginate_button:hover {
background: #f1f5f9 !important;
color: #3b82f6 !important;
}

.dataTables_wrapper .paginate_button.current,
.dataTables_wrapper .paginate_button.active {
background: linear-gradient(135deg, #4f46e5, #3b82f6) !important;
color: white !important;
box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3) !important;
}

/* No records message */
.dataTables_empty {
padding: 24px;
color: #94a3b8;
text-align: center;
font-style: italic;
}

body {
background: linear-gradient(140deg, #f8fafc 0%, #f1f5f9 100%);
min-height: 100vh;
}

/* Notification Dropdown */
.dropdown-menu {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.92);
border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-item.unread {
background-color: #f8fafc;
border-left: 2px solid #3b82f6;
}

.dropdown-item.unread .fw-medium {
color: #0f172a;
}

.dropdown-header {
font-size: 0.9rem;
color: #334155;
padding: 10px 16px;
}

/* Bell icon */
.bi-bell {
transition: color 0.2s;
}
.bi-bell:hover {
color: #3b82f6 !important;
}

/* Small circular badge */
.badge.rounded-circle {
font-size: 0;
}
/* Notification Icon Button */
.btn-icon {
width: 42px;
height: 42px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
background: none;
border: 1px solid transparent;
color: #64748b;
transition: all 0.2s ease;
position: relative;
}

.btn-icon:hover {
background-color: #f1f5f9;
color: #3b82f6;
border-color: #e2e8f0;
}

.btn-icon .bi {
font-size: 1.25rem; /* Matches your toggle button */
}

/* Notification Badge */
#notification-count {
font-weight: 600;
line-height: 1;
box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Login and Register Page Specific Styles */
body {
  background: linear-gradient(140deg, #f8fafc 0%, #f1f5f9 100%) !important;
  font-family: 'Inter', sans-serif !important;
  min-height: 100vh !important;
  align-items: center !important;
  padding: 24px !important;
}

/* Toast container for auth pages */
.toast-container {
  position: fixed !important;
  top: 24px !important;
  right: 24px !important;
  z-index: 1080 !important;
}

.toast {
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.login-card, .register-card {
  border: none !important;
  border-radius: 16px !important;
  background: white !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  padding: 32px !important;
  width: 100% !important;
  max-width: 420px !important;
}

.login-card h1, .register-card h1 {
  font-weight: 700 !important;
  font-size: 1.75rem !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
}

.login-card p.subtitle, .register-card p.subtitle {
  color: #64748b !important;
  font-size: 0.95rem !important;
  margin-bottom: 24px !important;
}

.register-card h1 {
  font-weight: 700 !important;
  font-size: 1.75rem !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
}

.register-card p.subtitle {
  color: #64748b !important;
  font-size: 0.95rem !important;
  margin-bottom: 24px !important;
}

.error-message {
  color: #dc3545 !important;
  font-size: 0.875rem !important;
  margin-top: 0.25rem !important;
}

.success-message {
  color: #198754 !important;
  font-size: 0.875rem !important;
  margin-top: 0.25rem !important;
}

/* Form styles for auth pages (these need to override defaults) */
.form-label {
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  color: #334155 !important;
  margin-bottom: 6px !important;
}

.form-control {
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 0.95rem !important;
  transition: all 0.2s ease !important;
  background-color: #fff !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03) !important;
}

.form-control:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
  outline: none !important;
}

.btn {
  padding: 10px 18px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
  font-size: 0.95rem !important;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #3b82f6) !important;
  border: none !important;
  padding: 12px !important;
  font-size: 1rem !important;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3) !important;
}

.btn-primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4) !important;
}

.divider {
  display: flex !important;
  align-items: center !important;
  text-align: center !important;
  margin: 24px 0 !important;
  color: #94a3b8 !important;
  font-size: 0.85rem !important;
}

.divider::before,
.divider::after {
  content: "" !important;
  flex: 1 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.divider::before {
  margin-right: 12px !important;
}

.divider::after {
  margin-left: 12px !important;
}

.social-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 10px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
  background: white !important;
  color: #334155 !important;
  transition: background 0.2s !important;
}

.social-btn:hover {
  background: #f8fafc !important;
}

.footer-link {
  text-align: center !important;
  margin-top: 20px !important;
  font-size: 0.9rem !important;
  color: #64748b !important;
}

.footer-link a {
  color: #3b82f6 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.footer-link a:hover {
  text-decoration: underline !important;
}

/* Sidebar styles */
.sidebar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 100vh !important;
  width: 300px !important;
  background: linear-gradient(180deg, #0f172a, #0b1120) !important;
  color: white !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 1040 !important;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.12) !important;
}

.sidebar.collapsed {
  width: 80px !important;
}

.sidebar h5 {
  font-size: 1.25rem !important;
  letter-spacing: 0.8px !important;
  font-weight: 600 !important;
  opacity: 0.9 !important;
  text-align: center !important;
  margin-bottom: 2rem !important;
}

/* Nav Links */
.sidebar .nav-link {
  color: #94a3b8 !important;
  font-weight: 500 !important;
  padding: 12px 20px !important;
  margin: 6px 16px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  transition: all 0.25s ease !important;
  height: 48px !important;
  position: relative !important;
}

.sidebar .nav-link i {
  font-size: 1.25rem !important;
  min-width: 24px !important;
  text-align: center !important;
}

.sidebar .nav-link .label {
  margin-left: 5px !important;
}

.sidebar .nav-link.active {
  background: linear-gradient(90deg, #3b82f6, #2563eb) !important;
  color: white !important;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3) !important;
}

.sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
}

/* Submenu */
.sidebar .submenu {
  list-style: none !important;
  padding-left: 0 !important;
  margin-top: 6px !important;
}

.sidebar .submenu .nav-link {
  font-size: 0.92rem !important;
  padding-left: 40px !important;
  margin: 3px 16px !important;
  color: #cbd5e1 !important;
  font-weight: 400 !important;
  height: 40px !important;
}

.sidebar .submenu .submenu .nav-link {
  padding-left: 56px !important;
}

.submenu-arrow {
  margin-left: auto !important;
  font-size: 0.85rem !important;
  transition: transform 0.2s ease !important;
  min-width: 16px !important;
  text-align: center !important;
}

.nav-link[aria-expanded="true"] .submenu-arrow {
  transform: rotate(180deg) !important;
}

/* === COLLAPSED MODE === */
.sidebar.collapsed {
  width: 80px !important;
}

.sidebar.collapsed .nav-link {
  justify-content: center !important;
  padding: 0 !important;
  margin: 8px 0 !important;
  height: 48px !important;
  width: 100% !important;
}

.sidebar.collapsed .nav-link > i:first-child {
  display: block !important;
  margin: 0 !important;
  min-width: 24px !important;
  width: 24px !important;
  text-align: center !important;
  font-size: 1.25rem !important;
}

/* Hide everything except the first icon */
.sidebar.collapsed .nav-link > :not(i:first-child) {
  display: none !important;
}

.sidebar.collapsed .submenu {
  display: none !important;
}

/* Main Content */
.main-content {
  margin-left: 300px !important;
  transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  min-height: 100vh !important;
}

.main-content.collapsed {
  margin-left: 80px !important;
}

/* Header */
.header {
  background: white !important;
  border-radius: 16px !important;
  padding: 14px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 32px !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1030; /* Bootstrap's navbar z-index is 1030; this ensures it stays on top */
}

/* Toggle Button */
.btn-toggle-sidebar {
  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
  border: none !important;
  color: white !important;
  border-radius: 10px !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3) !important;
  transition: all 0.2s ease !important;
}

.btn-toggle-sidebar:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4) !important;
}

/* Profile */
.profile-img img {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #e2e8f0 !important;
}

.profile-initials {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
}

/* Hide/show based on sidebar state */
.sidebar:not(.collapsed) ~ .main-content .mini,
.sidebar.collapsed ~ .main-content .full {
  display: none !important;
}

.sidebar.collapsed ~ .main-content .mini {
  display: flex !important;
}

/* Dashboard Cards */
.dashboard-card {
  border: none !important;
  border-radius: 18px !important;
  background: white !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
  padding: 24px !important;
  text-align: left !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}


.dashboard-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 6px !important;
  height: 100% !important;
  background: linear-gradient(to bottom, #3b82f6, #2563eb) !important;
}

.dashboard-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1) !important;
}

.dashboard-card h2 {
  font-size: 2.1rem !important;
  margin: 8px 0 0 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
}

.dashboard-card small {
  color: #64748b !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
}

/* Recent Activity */
.recent-activity-card {
  border: none !important;
  border-radius: 16px !important;
  background: white !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
  padding: 20px !important;
}

.recent-activity-card .list-group-item {
  border: none !important;
  padding: 12px 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.recent-activity-card .list-group-item i {
  color: #3b82f6 !important;
  margin-top: 4px !important;
}

.recent-activity-card .timestamp {
  font-size: 0.8rem !important;
  color: #94a3b8 !important;
  margin-left: auto !important;
}

/* Match Detail Tabs */
.nav-tabs .nav-link {
	font-weight: 600;
	color: #64748b;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 12px 20px;
	transition: all 0.2s ease;
}

.nav-tabs .nav-link:hover {
	color: #3b82f6;
	border-color: transparent;
	background-color: #f1f5f9;
}

.nav-tabs .nav-link.active {
	color: #3b82f6;
	border-bottom: 3px solid #3b82f6;
	background-color: transparent;
}

.nav-tabs {
	border-bottom: 1px solid #e2e8f0;
}

/* Match Detail Tables */
.match-detail-table th {
	font-weight: 600;
	color: #334155;
	background-color: #f8fafc;
}

.match-detail-table td {
	vertical-align: middle;
}
/* Custom Login Page Background */
body.login-page {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/specer/img/hero/hero-1.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.login-page .login-card {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.login-page .text-muted, .login-page .subtitle {
  color: #64748b !important;
}
