/* Custom Styles for IQA Exam Portal Redesign - Dashboard-Superadmin (Web and Mobile) */

:root {
  --bs-primary: #df001b;
  --bs-primary-hover: #c90018;
  --bs-secondary: #21236a;
  --bs-secondary-hover: #171952;
  --bs-light: #676a72;
  --bs-bg: #f0f1f1;
  --bs-dark: #1d2465;
  --bs-success: #0bc33f;
  --bs-success-bg: #e1fce9;
  --bs-live-bg: #ffeaee;
  --bs-live-color: #df001b;
  --bs-warning: #c9a757;
  --font-1: "Inter", sans-serif;
  --menu-open: 305px;
  --menu-close: 82px;
}

body {
  font-family: var(--font-1);
  background-color: var(--bs-bg);
}

/* 1. Sidebar Redesign */
/* 1. Sidebar Redesign and Responsive States */
body.desktop .side-bar-wrapper,
body.tablet .side-bar-wrapper {
  width: var(--menu-open);
  background-color: #21236a !important;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding: 0 !important;
}

body.desktop .side-bar,
body.tablet .side-bar {
  background-color: #21236a !important;
  border: none !important;
  height: 100% !important;
  border-radius: 0 !important;
}

.side-bar-body {
  background-color: #21236a !important;
  display: flex;
  flex-direction: column;
  height: auto;
  flex: 1;
  min-height: 0;
  border-radius: 0 !important;
  overflow-y: auto;
}

.side-bar-body::-webkit-scrollbar {
  width: 5px;
}

.side-bar-body::-webkit-scrollbar-track {
  background: transparent;
}

.side-bar-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.side-bar-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.side-menu .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-radius: 8px;
  margin: 2px 24px;
  /* Align horizontally inside menu */
  padding: 6px 16px !important;
  display: flex !important;
  align-items: center;
  white-space: nowrap;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.side-menu .nav-item .nav-link:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.05);
}

.side-menu .nav-item.active > .nav-link {
  background-color: #df001b !important;
  color: #ffffff !important;
}

.side-menu .nav-item .menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  margin-right: 12px;
}

.side-menu .nav-item .menu-icon img {
  width: 20px;
  height: 20px;
}

/* Sidebar Search Bar */
.sidebar-search-container {
  padding: 10px 24px;
  transition:
    opacity 0.2s ease,
    padding 0.3s ease;
}

.sidebar-search-box {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.sidebar-search-box input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13px;
  outline: none;
  width: 100%;
  transition: opacity 0.2s ease;
}

.sidebar-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sidebar-search-shortcut {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.side-menu .menu-label {
  font-family: var(--font-1);
  transition: opacity 0.2s ease;
}

.side-bar .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  padding-left: 15px !important;
}

.side-bar .dropdown-item {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  padding: 8px 12px !important;
}

.side-bar .dropdown-item:hover,
.side-bar .dropdown-item.active {
  color: #ffffff !important;
  background-color: transparent !important;
  font-weight: 500;
}

/* Sidebar Section Headers */
.side-menu-section-title {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 11px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 24px 8px !important;
  margin: 0;
  list-style: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

/* Sidebar User Info */
body.desktop .side-bar-user,
body.tablet .side-bar-user {
  display: none !important;
}

/* Sidebar Log Out Button */
.side-bar-logout-container {
  padding: 24px;
  margin-top: auto;
  transition: padding 0.3s ease;
}

.btn-sidebar-logout {
  width: 100%;
  background-color: transparent !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 12px !important;
  border-radius: 12px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  border: none !important;
}

.btn-sidebar-logout:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.btn-sidebar-logout img {
  filter: brightness(0) invert(1);
}

.btn-sidebar-logout span {
  transition: opacity 0.2s ease;
}

/* ==========================================================================
   SIDEBAR COLLAPSE / EXPAND TRANSITIONS & OVERRIDES (DESKTOP & TABLET)
   ========================================================================== */

/* Collapsed Sidebar Wrapper */
body.desktop.close-menu .side-bar-wrapper,
body.tablet:not(.open-menu) .side-bar-wrapper {
  width: var(--menu-close) !important;
}

/* Collapsed Content Wrapper Adjustment */
body.desktop.close-menu .content-wrapper {
  width: calc(100% - var(--menu-close) - 40px) !important;
  margin-left: calc(var(--menu-close) + 20px) !important;
}

body.tablet:not(.open-menu) .content-wrapper {
  width: calc(100% - var(--menu-close)) !important;
  margin-left: var(--menu-close) !important;
}

/* Collapsed Inner Elements - Mute / Hide Text */
body.desktop.close-menu .side-bar-wrapper .sidebar-search-shortcut,
body.desktop.close-menu .side-bar-wrapper .sidebar-search-box input,
body.desktop.close-menu .side-bar-wrapper .side-menu-section-title,
body.desktop.close-menu .side-bar-wrapper .side-menu .nav-item .menu-label,
body.desktop.close-menu .side-bar-wrapper .side-menu .nav-item .badge,
body.desktop.close-menu .side-bar-wrapper .btn-sidebar-logout span,
body.tablet:not(.open-menu) .side-bar-wrapper .sidebar-search-shortcut,
body.tablet:not(.open-menu) .side-bar-wrapper .sidebar-search-box input,
body.tablet:not(.open-menu) .side-bar-wrapper .side-menu-section-title,
body.tablet:not(.open-menu) .side-bar-wrapper .side-menu .nav-item .menu-label,
body.tablet:not(.open-menu) .side-bar-wrapper .side-menu .nav-item .badge,
body.tablet:not(.open-menu) .side-bar-wrapper .btn-sidebar-logout span {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.1s ease;
}

/* Collapsed Search Box adjusts to icon button style */
body.desktop.close-menu .side-bar-wrapper .sidebar-search-container,
body.tablet:not(.open-menu) .side-bar-wrapper .sidebar-search-container {
  padding: 10px 13px !important;
}

body.desktop.close-menu .side-bar-wrapper .sidebar-search-box,
body.tablet:not(.open-menu) .side-bar-wrapper .sidebar-search-box {
  padding: 8px 0 !important;
  justify-content: center;
  background: transparent !important;
}

body.desktop.close-menu .side-bar-wrapper .sidebar-search-box::before,
body.tablet:not(.open-menu) .side-bar-wrapper .sidebar-search-box::before {
  content: "\f52a";
  /* Bootstrap Icon Search code */
  font-family: "bootstrap-icons" !important;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

/* Collapsed Nav Links center icons and align margin */
body.desktop.close-menu .side-bar-wrapper .side-menu .nav-item .nav-link,
body.tablet:not(.open-menu) .side-bar-wrapper .side-menu .nav-item .nav-link {
  margin: 2px 13px !important;
  padding: 10px 0 !important;
  justify-content: center !important;
}

body.desktop.close-menu .side-bar-wrapper .side-menu .nav-item .menu-icon,
body.tablet:not(.open-menu) .side-bar-wrapper .side-menu .nav-item .menu-icon {
  margin-right: 0 !important;
}

/* Collapsed Logout button fits inside collapsed bar */
body.desktop.close-menu .side-bar-wrapper .side-bar-logout-container,
body.tablet:not(.open-menu) .side-bar-wrapper .side-bar-logout-container {
  padding: 15px 13px !important;
}

body.desktop.close-menu .side-bar-wrapper .btn-sidebar-logout,
body.tablet:not(.open-menu) .side-bar-wrapper .btn-sidebar-logout {
  padding: 10px 0 !important;
  border-radius: 8px !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 auto !important;
}

/* --- Expanded Hover Expand States --- */
body.desktop.expand-menu .side-bar-wrapper,
body.tablet.open-menu .side-bar-wrapper {
  width: var(--menu-open) !important;
}

body.desktop.expand-menu .content-wrapper {
  width: calc(100% - var(--menu-open) - 40px) !important;
  margin-left: calc(var(--menu-open) + 20px) !important;
}

body.tablet.open-menu .content-wrapper {
  width: calc(100% - var(--menu-open)) !important;
  margin-left: var(--menu-open) !important;
}

body.desktop.expand-menu .side-bar-wrapper .sidebar-search-shortcut,
body.desktop.expand-menu .side-bar-wrapper .sidebar-search-box input,
body.desktop.expand-menu .side-bar-wrapper .side-menu-section-title,
body.desktop.expand-menu .side-bar-wrapper .side-menu .nav-item .menu-label,
body.desktop.expand-menu .side-bar-wrapper .side-menu .nav-item .badge,
body.desktop.expand-menu .side-bar-wrapper .btn-sidebar-logout span,
body.tablet.open-menu .side-bar-wrapper .sidebar-search-shortcut,
body.tablet.open-menu .side-bar-wrapper .sidebar-search-box input,
body.tablet.open-menu .side-bar-wrapper .side-menu-section-title,
body.tablet.open-menu .side-bar-wrapper .side-menu .nav-item .menu-label,
body.tablet.open-menu .side-bar-wrapper .side-menu .nav-item .badge,
body.tablet.open-menu .side-bar-wrapper .btn-sidebar-logout span {
  opacity: 1 !important;
  pointer-events: auto;
  transition: opacity 0.25s ease 0.1s;
}

body.desktop.expand-menu .side-bar-wrapper .sidebar-search-container,
body.tablet.open-menu .side-bar-wrapper .sidebar-search-container {
  padding: 10px 24px !important;
}

body.desktop.expand-menu .side-bar-wrapper .sidebar-search-box,
body.tablet.open-menu .side-bar-wrapper .sidebar-search-box {
  padding: 8px 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

body.desktop.expand-menu .side-bar-wrapper .sidebar-search-box::before,
body.tablet.open-menu .side-bar-wrapper .sidebar-search-box::before {
  display: none !important;
}

body.desktop.expand-menu .side-bar-wrapper .side-menu .nav-item .nav-link,
body.tablet.open-menu .side-bar-wrapper .side-menu .nav-item .nav-link {
  margin: 2px 24px !important;
  padding: 10px 16px !important;
  justify-content: flex-start !important;
}

body.desktop.expand-menu .side-bar-wrapper .side-menu .nav-item .menu-icon,
body.tablet.open-menu .side-bar-wrapper .side-menu .nav-item .menu-icon {
  margin-right: 12px !important;
}

body.desktop.expand-menu .side-bar-wrapper .side-bar-logout-container,
body.tablet.open-menu .side-bar-wrapper .side-bar-logout-container {
  padding: 24px !important;
}

body.desktop.expand-menu .side-bar-wrapper .btn-sidebar-logout,
body.tablet.open-menu .side-bar-wrapper .btn-sidebar-logout {
  width: 100% !important;
  padding: 12px !important;
  border-radius: 12px !important;
  justify-content: center !important;
}

/* 2. Content Layout Wrapper Default styling */
body.desktop .content-wrapper,
body.tablet .content-wrapper {
  background-color: #f0f1f1 !important;
  transition:
    margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.desktop .content-wrapper {
  background-color: #f0f1f1 !important;
  border-radius: 16px;
  margin: 20px 20px 20px 0;
  padding: 24px;
  height: auto !important;
  min-height: calc(100vh - -1020px);
  width: calc(100% - var(--menu-open) - 40px) !important;
  margin-left: calc(var(--menu-open) + 20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.2s ease;
}

/* Premium Outer Panel Styling */
.dashboard-main-panel {
  background: #f0f1f1;
  width: 100%;
}

/* 3. Header Redesign (Logo left, Profile right) */
.light-header {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 40px !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logo-img {
  width: 303px;
  height: 96px;
  object-fit: contain;
}

.header-profile-widget {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 24px;
  border-radius: 44px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
}

.header-profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.header-profile-details {
  display: flex;
  flex-direction: column;
}

.header-profile-name {
  font-size: 24px;
  font-weight: 600;
  color: #1d2465;
  margin: 0;
  line-height: 1.2;
}

.header-profile-role {
  font-size: 14px;
  color: #676a72;
  margin: 4px 0 0 0;
}

/* 4. KPI Card System */
.kpi-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  height: 100%;
}

.kpi-card {
  position: relative;
  padding-top: 40px;
  /* Offset for the overlapping badge */
  width: 100%;
}

.kpi-card-body {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 165px;
}

.kpi-value {
  font-size: 48px;
  font-weight: 600;
  color: #1d2465;
  margin-top: auto;
  margin-bottom: auto;
}

.kpi-footer {
  width: 100%;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.kpi-icon-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.kpi-icon-badge img,
.kpi-icon-badge svg {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
  /* Ensure white icons */
}

/* Brand Colors for KPIs */
.color-academics {
  background-color: #7485ce !important;
}

.color-enrolled {
  background-color: #3c4689 !important;
}

.color-conducted {
  background-color: #1d2465 !important;
}

.color-courses {
  background-color: #df001b !important;
}

/* 5. Questions Quadrant Widget */
.quadrant-card {
  background: #ffffff;
  border-radius: 44px;
  padding: 40px;
  height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
}

.quadrant-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.grid-line-h {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 1px;
  background-color: #21236a;
}

.grid-line-h::before,
.grid-line-h::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #21236a;
  transform: translateY(-50%);
}

.grid-line-h::before {
  left: 0;
}

.grid-line-h::after {
  right: 0;
}

.grid-line-v {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 50%;
  width: 1px;
  background-color: #21236a;
}

.grid-line-v::before,
.grid-line-v::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #21236a;
  transform: translateX(-50%);
}

.grid-line-v::before {
  top: 0;
}

.grid-line-v::after {
  bottom: 0;
}

.grid-diamond {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  background-color: #df001b;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 4px;
  z-index: 5;
}

.quadrant {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.quad-title {
  font-size: 22px;
  font-weight: 600;
  color: #21236a;
  margin-bottom: 8px;
  text-align: center;
}

.quad-badge {
  background-color: #f0f2fa !important;
  color: #21236a !important;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  min-width: 44px;
  text-align: center;
  border: 1px solid #dcddde;
}

/* 6. Recent Exam List Table Redesign */
.custom-table-card {
  background: #ffffff;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  border: none !important;
}

.custom-table-header {
  background-color: #d4d7e6 !important;
  color: #21236a !important;
  padding: 18px 30px !important;
  font-size: 16px;
  font-weight: 600;
  border: none;
}

.recent-exams-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.recent-exams-table thead tr {
  background-color: #21236a !important;
  color: #ffffff !important;
}

.recent-exams-table thead th,
.recent-exams-table thead td {
  padding: 14px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  border: none !important;
  vertical-align: middle;
}

.recent-exams-table tbody tr:nth-child(odd) {
  background-color: #ffffff !important;
}

.recent-exams-table tbody tr:nth-child(even) {
  background-color: #f8f9fb !important;
}

.recent-exams-table tbody td,
.recent-exams-table tbody th {
  padding: 14px 20px !important;
  font-size: 13px !important;
  font-weight: 400;
  border-bottom: 1px solid #eaeaef !important;
  color: #21236a !important;
  vertical-align: middle;
}

/* Alternate row text rules for dark row readability */
.recent-exams-table tbody tr td,
.recent-exams-table tbody tr th,
.recent-exams-table tbody tr p,
.recent-exams-table tbody tr .text-small {
  color: #21236a !important;
}

.recent-exams-table tbody tr .text-small {
  opacity: 0.6;
}

/* Action list icons inversion in dark rows */
.table-action-item i {
  color: #21236a !important;
}

.table-action-list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.table-action-item {
  width: 32px !important;
  height: 32px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  border: 1px solid #e2e3e8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.2s ease !important;
}

.table-action-item img {
  width: 16px;
  height: 16px;
}

.table-action-item:hover {
  background-color: #f4f5f7 !important;
  border-color: #c3c4ca !important;
}

/* Pagination Footer Redesign */
.custom-table-footer {
  background-color: #d4d7e6 !important;
  color: #21236a !important;
  padding: 16px 30px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none !important;
}

.custom-table-footer select {
  background-color: #fafafa;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  color: #2c2d30;
  margin: 0 6px;
  font-size: 11px;
}

.custom-pagination-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-pagination-pages {
  display: flex;
  gap: 8px;
}

.custom-pagination-pages a {
  color: #c9a757 !important;
  /* gold */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 8px;
}

.custom-pagination-pages a.active {
  color: #ffffff !important;
  font-weight: 600;
}

/* Badges styling */
.badge-scheduled {
  background-color: #e1fce9 !important;
  color: #0bc33f !important;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-scheduled::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0bc33f;
}

.badge-live {
  background-color: #ffeaee !important;
  color: #ed143b !important;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-live::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ed143b;
}

/* 7. Top Academies Widget Redesign */
.top-academies-card {
  background: #ffffff;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  height: 459px;
  display: flex;
  flex-direction: column;
}

.top-academies-header {
  background-color: #d4d7e6 !important;
  color: #21236a !important;
  padding: 18px 30px !important;
  font-size: 16px;
  font-weight: 600;
  border: none;
}

.top-academies-body {
  padding: 24px 30px !important;
  flex-grow: 1;
  overflow-y: auto;
}

.academy-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.academy-row-left {
  display: flex;
  align-items: center;
}

.academy-icon-box {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background-color: #f0f2fa !important;
  border: 1px solid #e2e3e8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 12px !important;
}

.academy-icon-box img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain;
}

.academy-name {
  font-size: 14px;
  font-weight: 500;
  color: #1d2465;
  margin: 0;
}

.academy-students {
  font-size: 12px;
  color: #676a72;
  margin: 2px 0 0 0;
}

.top-academies-footer {
  padding: 12px 30px !important;
  display: flex;
  justify-content: center;
  border-top: 1px solid #f1f1f4;
}

.btn-view-all {
  color: #1d2465 !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.btn-view-all:hover {
  text-decoration: underline;
}

/* 8. Bottom Row: Bar Chart, Live Circle, Exams List Redesign */
.student-added-card {
  background-color: #1d2465 !important;
  border-radius: 44px;
  padding: 30px 40px;
  color: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  height: 300px;
  display: flex !important;
  flex-direction: row;
}

.chart-section-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-right: 24px;
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
}

.btn-group-chart-filter {
  display: flex;
  gap: 8px;
}

.btn-group-chart-filter .btn {
  font-size: 13px !important;
  font-weight: 500;
  padding: 6px 20px !important;
  border-radius: 100px !important;
  border: none !important;
}

.btn-chart-active {
  background-color: #df001b !important;
  color: #ffffff !important;
}

.btn-chart-inactive {
  background-color: #f0f1f1 !important;
  color: #1d2465 !important;
}

/* Custom capsule bar chart styling */
.custom-capsule-chart {
  display: flex;
  height: 170px;
  position: relative;
  margin-top: 10px;
}

.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  height: 140px;
  font-weight: 500;
  width: 30px;
}

.chart-area-wrapper {
  flex-grow: 1;
  position: relative;
  height: 100%;
}

.chart-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
}

.chart-grid-lines .grid-line {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.chart-columns {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.chart-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.pill-stack {
  display: flex;
  flex-direction: column-reverse;
  gap: 3px;
  margin-bottom: 8px;
  height: 140px;
  justify-content: flex-start;
  align-items: center;
}

.chart-pill {
  width: 22px;
  height: 8px;
  border-radius: 100px;
}

.chart-pill.pill-red {
  background-color: #df001b;
}

.chart-pill.pill-white {
  background-color: #ffffff;
}

.chart-pill.pill-empty {
  background-color: rgba(255, 255, 255, 0.12) !important;
}

.column-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-align: center;
  font-weight: 500;
}

/* Live Exams counter in the card */
.live-exams-side-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  flex-shrink: 0;
  padding-left: 24px;
}

.live-exams-val {
  font-size: 80px;
  font-weight: 700;
  color: #df001b !important;
  line-height: 1;
}

.live-exams-txt {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 12px;
  text-align: center;
  white-space: nowrap;
}

/* Exams Overview Card styling (Right card) */
.exams-overview-card {
  background: #ffffff;
  border-radius: 44px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  border: none !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 300px;
}

.exams-overview-header-tag {
  background-color: #e2e3e8;
  padding: 6px 18px;
  border-radius: 100px;
  margin: 24px 24px 0 24px;
  display: inline-block;
  width: fit-content;
}

.exams-overview-header-tag span {
  color: #21236a;
  font-size: 13px;
  font-weight: 600;
}

.exams-overview-body-new {
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.exam-row-item-new {
  display: flex;
  align-items: center;
}

.exam-row-pill-icon {
  width: 14px;
  height: 8px;
  border-radius: 100px;
  margin-right: 10px;
  flex-shrink: 0;
}

.exam-row-pill-icon.color-scheduled {
  background-color: #df001b;
}

.exam-row-pill-icon.color-live {
  background-color: #21236a;
}

.exam-row-pill-icon.color-completed {
  background-color: #1d2465;
}

.exam-row-pill-icon.color-pending {
  background-color: #798ec8;
}

.exam-row-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2e3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #676a72;
  font-size: 13px;
  flex-shrink: 0;
}

.exam-row-stats {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.exam-row-num {
  font-size: 20px;
  font-weight: 700;
  color: #21236a;
}

.exam-row-lbl {
  font-size: 11px;
  color: #676a72;
  font-weight: 500;
}

/* 8.5 Tablet view layout wrapper override */
body.tablet .content-wrapper {
  padding: 24px !important;
}

body.tablet.open-menu .content-wrapper {
  margin-left: var(--menu-open) !important;
  width: calc(100% - var(--menu-open)) !important;
}

/* 8.6 Stack columns on viewports <= 1249px */
@media (max-width: 1249px) {
  /* Row 2 layout overrides */
  .r2-layout {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .r2-layout > .col-lg-7,
  .r2-layout > .col-lg-5 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .quadrant-card {
    width: 100% !important;
    height: auto !important;
    min-height: 350px !important;
    padding: 30px !important;
  }

  /* Row 3 layout overrides */
  .r3-layout {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .r3-layout > .col-lg-8,
  .r3-layout > .col-lg-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .top-academies-card {
    width: 100% !important;
    height: auto !important;
  }

  /* Row 4 layout overrides */
  .r4-layout {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .r4-layout > .col-lg-9,
  .r4-layout > .col-lg-3 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .student-added-card {
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
  }

  .exams-overview-card {
    width: 100% !important;
    height: auto !important;
  }

  .exams-overview-body-new {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: space-between !important;
    padding: 24px !important;
  }

  .exam-row-item-new {
    flex: 1 0 20% !important;
    min-width: 180px !important;
    margin-bottom: 0 !important;
  }
}

/* 9. Mobile View Overrides */
@media (max-width: 991px) {
  body.mobile .content-wrapper,
  body.tablet .content-wrapper {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 16px !important;
  }

  .header-container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .header-logo-img {
    width: 180px;
    height: 57px;
  }

  .header-profile-widget {
    width: 100%;
    justify-content: flex-start;
    padding: 12px;
    border-radius: 24px;
  }

  .header-profile-img {
    width: 50px;
    height: 50px;
  }

  .header-profile-name {
    font-size: 18px;
  }

  /* Cards & layout panels on mobile */
  .kpi-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .kpi-card {
    padding-top: 25px;
  }

  .kpi-card-body {
    border-radius: 24px;
    height: 137px;
  }

  .kpi-icon-badge {
    width: 50px;
    height: 50px;
  }

  .kpi-icon-badge img,
  .kpi-icon-badge svg {
    width: 26px;
    height: 26px;
  }

  .kpi-value {
    font-size: 30px;
  }

  .quadrant-card {
    border-radius: 24px;
    height: 355px;
    padding: 20px;
  }

  .quad-title {
    font-size: 20px;
  }

  .custom-table-card,
  .top-academies-card,
  .exams-overview-card,
  .student-added-card {
    border-radius: 24px !important;
    height: auto !important;
    margin-bottom: 16px;
  }

  .student-added-card {
    padding: 20px !important;
    flex-direction: column !important;
  }

  .chart-section-wrapper {
    border-right: none !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-right: 0 !important;
    padding-bottom: 24px !important;
    margin-bottom: 20px !important;
  }

  .live-exams-side-wrapper {
    width: 100% !important;
    padding-left: 0 !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    padding-top: 10px;
  }

  .live-exams-val {
    font-size: 60px !important;
  }

  .live-exams-txt {
    margin-top: 0 !important;
  }

  /* Vertical stacking for exams overview items on mobile */
  .exams-overview-body-new {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .exam-row-item-new {
    flex: 1 1 100% !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   DESKTOP PIXEL PERFECT OVERRIDES (width >= 1550px)
   ========================================================================== */

/* Quadrant Title wrap prevention */
.quad-title {
  white-space: nowrap !important;
}

/* Sidebar header logo hiding & button styling on desktop & tablet */
body.desktop .side-bar-header,
body.tablet .side-bar-header {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 80px !important;
  position: relative !important;
}

body.desktop .side-bar-header .navbar-brand,
body.tablet .side-bar-header .navbar-brand {
  display: none !important;
}

body.desktop .side-bar-close,
body.tablet .side-bar-close {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 28px !important;
  height: 28px !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 50% !important;
  top: 40px !important;
  transform: translateY(-50%) !important;
  right: -14px !important;
  left: auto !important;
  z-index: 1070 !important;
  cursor: pointer !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease;
}

body.desktop .side-bar-close::before,
body.tablet .side-bar-close::before {
  content: "\f27f" !important;
  /* chevron-left */
  font-family: "bootstrap-icons" !important;
  font-size: 14px !important;
  color: #21236a !important;
  font-weight: 900 !important;
}

body.desktop.close-menu .side-bar-close::before,
body.tablet.close-menu .side-bar-close::before,
body.tablet:not(.open-menu) .side-bar-close::before {
  content: "\f285" !important;
  /* chevron-right */
}

@media (min-width: 1550px) {
  /* Allow dashboard main panel to stretch to fill screen width responsively */
  .content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .main-header-bar {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    margin-bottom: 20px !important;
    /* Figma spacing between rows */
  }

  /* Row 2 layout overrides */
  .r2-layout {
    display: flex !important;
    gap: 0 !important;
    margin-bottom: 20px !important;
    /* Figma spacing between rows */
  }

  .r2-layout > .col-md-8 {
    width: calc(100% - 475px - 64px) !important;
    flex: 0 0 calc(100% - 475px - 64px) !important;
    max-width: calc(100% - 475px - 64px) !important;
    padding-right: 0 !important;
  }

  .r2-layout > .col-md-4 {
    width: 475px !important;
    flex: 0 0 475px !important;
    max-width: 475px !important;
    margin-left: 64px !important;
    /* Figma gap */
    padding-left: 0 !important;
  }

  /* KPI Grid container override */
  .kpi-grid-container {
    display: grid !important;
    grid-template-columns: 299px 299px !important;
    column-gap: 36px !important;
    row-gap: 66px !important;
    justify-content: start !important;
    height: auto !important;
  }

  .custom-stat-card {
    width: 299px !important;
    height: 205px !important;
    padding-top: 40px !important;
  }

  /* Quadrant Card override */
  .quadrant-card {
    width: 475px !important;
    height: 475px !important;
    background-color: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    margin-top: 0 !important;
  }

  /* Row 3 layout overrides */
  .r3-layout {
    display: flex !important;
    gap: 0 !important;
    margin-bottom: 20px !important;
    /* Figma spacing between rows */
  }

  .r3-layout > .col-md-8 {
    width: calc(100% - 305px - 20px) !important;
    flex: 0 0 calc(100% - 305px - 20px) !important;
    max-width: calc(100% - 305px - 20px) !important;
    padding-right: 0 !important;
  }

  .r3-layout > .col-md-4 {
    width: 305px !important;
    flex: 0 0 305px !important;
    max-width: 305px !important;
    margin-left: 20px !important;
    /* Figma gap */
    padding-left: 0 !important;
  }

  .top-academies-card {
    width: 305px !important;
    height: 459px !important;
  }

  /* Row 4 layout overrides */
  .r4-layout {
    display: flex !important;
    gap: 0 !important;
  }

  .r4-layout > .col-md-9 {
    width: calc(100% - 206px - 20px) !important;
    flex: 0 0 calc(100% - 206px - 20px) !important;
    max-width: calc(100% - 206px - 20px) !important;
    padding-right: 0 !important;
  }

  .r4-layout > .col-md-3 {
    width: 206px !important;
    flex: 0 0 206px !important;
    max-width: 206px !important;
    margin-left: 20px !important;
    /* Figma gap */
    padding-left: 0 !important;
  }

  .student-added-card {
    width: 948px !important;
    height: 300px !important;
  }

  .exams-overview-card {
    width: 206px !important;
    height: 300px !important;
  }
}

/* ==========================================================================
   LOGIN SCREEN REDESIGN STYLES
   ========================================================================== */

/* Page background */
.login-page-body {
  background-color: #ffffff !important;
  /* Outer canvas is white */
  font-family: "Inter", sans-serif;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.login-wrapper {
  width: 100%;
  height: 100%;
  max-width: 1594px;
  max-height: 1052px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}


.login-card {
  width: 100%;
  max-width: 1554px;
  height: 100%;
  max-height: 1012px;
  background-color: #f3f4f4;
  border-radius: 44px;
  /* Matches dashboard card border radius */
  overflow: hidden;
  /* Clips illustration and bg inside card bounds */
  display: flex;
  flex-direction: row;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  box-sizing: border-box;
}

/* Left Panel — fills all remaining space, bg-login-web.png as background */
.login-left-panel {
  flex: 1 1 0%;
  min-width: 0;
  height: 100%;
  position: static;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
  background-image: url(../img/bg-login-web.png?v=3);
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: auto;
}

/* Hide original background polygon elements since we now use the actual design image asset */
.login-polygon {
  display: none !important;
}

/* Logo — positioned absolutely on desktop and aligned to top-left relative to the login card */
.login-logo-container {
  position: absolute;
  top: 60px;
  left: 80px;
  transform: none;
  z-index: 3;
  pointer-events: none;
}

.login-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
}

/* Form Container — positioned absolutely and centered perfectly both horizontally and vertically inside the login card */
.login-form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  max-width: calc(100% - 80px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px 0;
  pointer-events: auto;
}

@media (min-width: 1200px) {
  .login-form-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .login-logo-container {
    top: 40px;
    left: 280px;
    transform: none;
  }
}

@media (min-width: 1400px) {
  .login-form-container {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    width: 360px;
  }
}

/* Header styles */
.login-form-header {
  margin-bottom: 24px;
  text-align: center;
}

.login-title {
  font-size: 18px;
  font-weight: 500;
  color: #2c2d30;
  margin-bottom: 6px;
}

.login-subtitle {
  font-size: 13px;
  color: #676a72;
  margin: 0;
}

.login-link {
  color: #21236a !important;
  font-weight: 500;
  text-decoration: none;
}

.login-link:hover {
  text-decoration: underline;
}

/* Input Fields styling */
.login-form .form-label {
  font-size: 13px;
  font-weight: 400;
  color: #2c2d30;
  margin-bottom: 8px;
}

.login-form .form-control {
  height: 40px;
  border: 1.5px solid #21236a !important;
  /* Premium dark blue border from Figma/mockup */
  border-radius: 8px;
  font-size: 13px;
  color: #2c2d30;
  background-color: #ffffff;
}

.login-form .form-control:focus {
  border-color: #21236a;
  box-shadow: 0 0 0 2px rgba(33, 35, 106, 0.1);
}

.login-form .form-control::placeholder {
  color: #8e9198;
}

/* Links */
.forgot-password-link {
  font-size: 13px;
  color: #1379f0 !important;
  text-decoration: none;
  font-weight: 400;
}

.forgot-password-link:hover {
  text-decoration: underline;
}

/* Checkbox */
.login-form .form-check-input {
  width: 18px;
  height: 18px;
  border: 1.5px solid #21236a;
  /* Matching blue border */
  border-radius: 4px;
  cursor: pointer;
}

.login-form .form-check-input:checked {
  background-color: #21236a;
  border-color: #21236a;
}

.login-form .form-check-label {
  font-size: 13px;
  font-weight: 500;
  color: #393b40;
  cursor: pointer;
  line-height: 18px;
}

/* Submit Button */
.btn-login {
  width: 106px;
  height: 42px;
  background-color: #21236a !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 500;
  border-radius: 12px 12px 12px 0;
  border: none;
  transition: background-color 0.2s;
}

.btn-login:hover {
  background-color: #171952 !important;
}

/* Right Panel (Banner Photo) — fixed width column on desktop */
.login-right-panel {
  width: 395px;
  flex: 0 0 395px;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #f3f4f4;
}

.login-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Mobile illustration — hidden by default on desktop */
.login-mobile-illustration {
  display: none !important;
}


/* ==========================================================================
   TABLET VIEW OVERRIDES FOR LOGIN (768px <= width <= 1199px)
   (iPad Mini, iPad Air, iPad Pro, portrait & landscape tablets)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .login-page-body {
    height: 100vh;
    min-height: 100vh;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff !important;
  }

  .login-wrapper {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .login-card {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 32px;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
  }

  .login-left-panel {
    flex: 1 1 0%;
    min-width: 0;
    height: 100%;
    position: relative;
    background-image: url(../img/bg-login-web.png?v=3);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .login-right-panel {
    display: flex !important;
    width: 32%;
    max-width: 380px;
    min-width: 250px;
    flex: 0 0 auto;
    height: 100%;
    background-color: #f3f4f4;
    overflow: hidden;
    align-items: flex-end;
    justify-content: center;
  }

  .login-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }

  .login-logo-container {
    position: absolute;
    top: 40px;
    left: 60px;
    transform: none;
    z-index: 3;
    margin-bottom: 0;
  }

  .login-logo {
    width: 190px;
    height: auto;
  }

  .login-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    max-width: calc(100% - 40px);
    z-index: 10;
    padding: 10px 0;
    margin: 0;
  }

  .login-mobile-illustration {
    display: none !important;
  }
}

/* Shorter height adjustments for tablets in landscape mode */
@media (min-width: 768px) and (max-height: 680px) {
  .login-page-body {
    padding: 12px;
  }

  .login-card {
    max-height: 94vh;
    min-height: 440px;
    border-radius: 28px;
  }

  .login-logo-container {
    top: 20px;
    left: 50px;
    transform: none;
  }

  .login-logo {
    width: 155px;
  }

  .login-form-container {
    top: 54%;
  }

  .login-form-header {
    margin-bottom: 14px;
  }

  .login-form .mb-4 {
    margin-bottom: 12px !important;
  }

  .login-form .mt-5 {
    margin-top: 18px !important;
  }

  .btn-login {
    height: 38px;
  }
}

/* ==========================================================================
   MOBILE VIEW overrides FOR LOGIN (width < 768px)
   ========================================================================== */
@media (max-width: 767.98px) {
  .login-page-body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff !important;
  }

  .login-wrapper {
    max-height: none;
    padding: 0;
  }

  .login-card {
    width: 100%;
    height: auto;
    min-height: 780px;
    max-height: 100vh;
    border-radius: 24px;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  }

  .login-left-panel {
    width: 100%;
    flex: 1 1 auto;
    padding: 80px 24px 120px 24px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background-image: url(../img/bg-login-mobile.png?v=3) !important;
    background-size: auto;
    background-position: left center;
    background-repeat: no-repeat;
  }

  /* Logo positioned on top of the form on mobile */
  .login-logo-container {
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
    z-index: 2;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .login-logo {
    width: 180px;
    height: auto;
  }

  /* Form Container */
  .login-form-container {
    width: 310px;
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding-bottom: 60px;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    /* Leave space so illustration doesn't overlap the button */
  }

  /* Hide right panel photo on mobile */
  .login-right-panel {
    display: none;
  }

  /* Mobile Big Ben Illustration — absolute bottom-right, clipped by overflow:hidden on parent */
  .login-mobile-illustration {
    display: block !important;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 280px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }

  .login-logo-container {
    pointer-events: none;
  }

  .login-form-container {
    z-index: 10;
    pointer-events: auto;
  }

  .login-mobile-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.85;
  }
}

/* ==========================================================================
   ADDITIONAL AUTH ICON STYLES FOR NEW LOGIN DESIGN
   ========================================================================== */

/* Position the auth-icon-right within form-control-icon */
.form-control-icon .auth-icon-right {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
}

/* Adjust padding for form-control when auth-icon-right is present */
.form-control-icon.form-control-password .form-control {
  padding-right: 40px;
}

/* Disable the old eye-icon pseudo-element since we use auth-icon-right img instead */
.form-control-icon.form-control-password .eye-icon {
  display: none !important;
}

/* Ensure form inputs are clickable */
.login-form .form-control {
  pointer-events: auto;
  z-index: 5;
}

.login-form .form-control-icon {
  pointer-events: auto;
  z-index: 5;
}

.login-form label {
  pointer-events: auto;
  z-index: 5;
}

.login-form button {
  pointer-events: auto;
  z-index: 5;
}

.login-form a {
  pointer-events: auto;
  z-index: 5;
}

.login-form .form-check-input {
  pointer-events: auto;
  z-index: 5;
}

.login-form .form-check-label {
  pointer-events: auto;
  z-index: 5;
}

/* Error message styling for new login design */
.auth-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  pointer-events: auto;
}

/* Session status alert styling */
.auth-status-alert {
  font-size: 13px;
  padding: 10px 15px;
  border-radius: 8px;
  pointer-events: auto;
}

/* Timer hidden state for OTP page */
.auth-timer-hidden {
  display: none;
}

/* Responsive adjustments for tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .login-wrapper {
    padding: 2px;
  }

  .login-card {
    max-width: 98%;
    border-radius: 20px;
    padding: 0;
    max-height: 95vh;
  }

  .login-right-panel {
    width: 180px;
    flex: 0 0 180px;
  }

  .login-form-container {
    width: 240px;
    padding: 6px 0;
  }

  .login-logo {
    width: 155px;
  }

  .login-logo-container {
    top: 25px;
    left: 40px;
    transform: none;
  }

  .login-form .form-control {
    height: 34px;
    font-size: 11px;
  }

  .login-form .form-label {
    font-size: 11px;
  }

  .login-title {
    font-size: 15px;
  }

  .login-subtitle {
    font-size: 11px;
  }

  .btn-login {
    width: 85px;
    height: 34px;
    font-size: 11px;
  }
}

/* Medium screen adjustments (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .login-wrapper {
    padding: 6px;
  }

  .login-card {
    max-width: 100%;
    max-height: 95vh;
  }

  .login-right-panel {
    width: 250px;
    flex: 0 0 250px;
  }

  .login-form-container {
    width: 300px;
  }

  .login-logo {
    width: 160px;
  }

  .login-logo-container {
    top: 40px;
    left: 160px;
    transform: none;
  }
}

/* ==========================================================================
   STUDENT VERIFICATION SCREEN REDESIGN STYLES
   ========================================================================== */

/* Page background */
.verification-page-body {
  background-color: #ffffff !important;
  font-family: "Inter", sans-serif;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.verification-wrapper {
  width: 100%;
  height: 100%;
  max-width: 1594px;
  max-height: 1052px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.verification-card {
  width: 100%;
  max-width: 1554px;
  height: 100%;
  max-height: 1012px;
  background-color: #f3f4f4;
  border-radius: 44px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  box-sizing: border-box;
}

/* Left Panel */
.verification-left-panel {
  flex: 1 1 0%;
  min-width: 0;
  height: 100%;
  position: static;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
  background-image: url(../img/bg-login-web.png?v=3);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Logo container */
.verification-logo-container {
  position: absolute;
  top: 40px;
  left: 80px;
  transform: none;
  z-index: 3;
}

@media (max-width: 1250px) {
  .verification-logo-container {
    left: 40px;
    top: 30px;
    transform: none;
  }

  .verification-logo {
    width: 180px;
  }
}

.verification-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
}

/* Form Container - Centered and responsive */
.verification-form-container {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  max-width: calc(100% - 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px 0;
}

@media (min-width: 1200px) {
  .verification-form-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 1400px) {
  .verification-form-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
  }
}

/* Header styles */
.verification-form-header {
  margin-bottom: 20px;
}

.verification-title {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 6px;
}

.verification-subtitle {
  font-size: 13px;
  color: #676a72;
  margin: 0;
}

/* Input Fields styling */
.verification-form .form-label {
  font-size: 13px;
  font-weight: 500;
  color: #2c2d30;
  margin-bottom: 4px;
}

.verification-form .form-control {
  height: 44px;
  border: 1px solid #e2e3e8 !important;
  border-radius: 8px;
  font-size: 14px;
  color: #2c2d30;
  background-color: #ffffff;
  padding: 10px 14px;
}

.verification-form .form-control:focus {
  border-color: #21236a !important;
  box-shadow: 0 0 0 2px rgba(33, 35, 106, 0.1);
}

.verification-form .form-control::placeholder {
  color: #8e9198;
}

/* Checkbox */
.verification-form .form-check-input {
  width: 18px;
  height: 18px;
  border: 1.5px solid #21236a;
  border-radius: 4px;
  cursor: pointer;
}

.verification-form .form-check-input:checked {
  background-color: #21236a;
  border-color: #21236a;
}

.verification-form .form-check-label {
  font-size: 13px;
  font-weight: 500;
  color: #676a72;
  cursor: pointer;
  line-height: 18px;
}

/* Verify Button */
.btn-verification {
  width: 100%;
  height: 46px;
  background-color: #21236a !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: background-color 0.2s;
}

.btn-verification:hover {
  background-color: #171952 !important;
}

/* Right Panel (Banner Photo) */
.verification-right-panel {
  width: 395px;
  flex: 0 0 395px;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #f3f4f4;
}

.verification-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Mobile illustration */
.verification-mobile-illustration {
  display: none !important;
}

/* ==========================================================================
   MOBILE VIEW overrides FOR VERIFICATION (width < 992px)
   ========================================================================== */
@media (max-width: 991px) {
  .verification-page-body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff !important;
  }

  .verification-wrapper {
    max-height: none;
    padding: 0;
  }

  .verification-card {
    width: 100%;
    max-width: 402px;
    height: auto;
    min-height: 780px;
    max-height: 100vh;
    border-radius: 24px;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  }

  .verification-left-panel {
    width: 100%;
    flex: 1 1 auto;
    padding: 40px 24px 120px 24px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background-image: url(../img/bg-login-mobile.png?v=3) !important;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
  }

  .verification-logo-container {
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
    z-index: 2;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .verification-logo {
    width: 180px;
    height: auto;
  }

  .verification-form-container {
    width: 310px;
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding-bottom: 60px;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .verification-right-panel {
    display: none;
  }

  .verification-mobile-illustration {
    display: block !important;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 280px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }

  .verification-mobile-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.85;
  }
}

/* ==========================================================================
   STUDENT IMAGE VERIFICATION SCREEN STYLES
   ========================================================================== */

/* Page background */
.student-img-ver-page-body {
  background-color: #ffffff !important;
  font-family: "Inter", sans-serif;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.student-img-ver-wrapper {
  width: 100%;
  height: 100%;
  max-width: 1594px;
  max-height: 1052px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.student-img-ver-card {
  width: 100%;
  max-width: 1554px;
  height: 100%;
  max-height: 1012px;
  background-color: #f3f4f4;
  border-radius: 44px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  box-sizing: border-box;
}

/* Left Panel */
.student-img-ver-left-panel {
  flex: 1 1 0%;
  min-width: 0;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
  background-image: url(../img/bg-login-web.png?v=3);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Logo container */
.student-img-ver-logo-container {
  position: absolute;
  top: 40px;
  left: 100px;
  z-index: 3;
}

@media (max-width: 1250px) {
  .student-img-ver-logo-container {
    left: 40px;
    top: 30px;
  }

  .student-img-ver-logo {
    width: 180px;
  }
}

.student-img-ver-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
}

/* Form Container - Centered and responsive */
.student-img-ver-form-container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 440px;
  max-width: calc(100% - 80px);
  align-self: center;
  box-sizing: border-box;
  padding: 10px 0;
  z-index: 2;
  position: relative;
}

@media (min-width: 1200px) {
  .student-img-ver-form-container {
    align-self: flex-start;
    margin-left: 357px;
  }
}

@media (min-width: 1400px) {
  .student-img-ver-form-container {
    align-self: flex-start;
    margin-left: 542px;
  }
}

/* Header styles */
.student-img-ver-form-header {
  margin-bottom: 24px;
}

.student-img-ver-title {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 6px;
}

.student-img-ver-subtitle {
  font-size: 13px;
  color: #676a72;
  margin: 0;
}

/* Image preview container */
.student-img-ver-preview-container {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1.55 / 1;
  border: 2.5px solid #21236a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.student-img-ver-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Submit Button */
.btn-student-img-ver {
  width: 100%;
  height: 46px;
  background-color: #21236a !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: background-color 0.2s;
  margin-top: 30px;
}

.btn-student-img-ver:hover {
  background-color: #171952 !important;
}

/* Right Panel (Banner Photo) */
.student-img-ver-right-panel {
  width: 395px;
  flex: 0 0 395px;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #f3f4f4;
}

.student-img-ver-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Mobile illustration */
.student-img-ver-mobile-illustration {
  display: none !important;
}

/* MOBILE VIEW overrides FOR VERIFICATION */
@media (max-width: 991px) {
  .student-img-ver-page-body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff !important;
  }

  .student-img-ver-wrapper {
    max-height: none;
    padding: 0;
  }

  .student-img-ver-card {
    width: 100%;
    max-width: 402px;
    height: auto;
    min-height: 600px;
    max-height: 100vh;
    border-radius: 24px;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  }

  .student-img-ver-left-panel {
    width: 100%;
    flex: 1 1 auto;
    padding: 40px 24px 80px 24px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background-image: url(../img/bg-login-mobile.png?v=3) !important;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
  }

  .student-img-ver-logo-container {
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
    z-index: 2;
  }

  .student-img-ver-logo {
    width: 180px;
    height: auto;
  }

  .student-img-ver-form-container {
    width: 310px;
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding-bottom: 40px;
  }

  .student-img-ver-right-panel {
    display: none;
  }

  .student-img-ver-mobile-illustration {
    display: block !important;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 280px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }

  .student-img-ver-mobile-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.85;
  }
}

/* ==========================================================================
   8. Responsive Academy List Screen (Center's List) Overrides
   ========================================================================== */
.custom-table-footer {
  background-color: #e9ebf3 !important;
  /* light grayish purple/blue from the screenshot */
  padding: 16px 30px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  border-top: none !important;
  flex-wrap: wrap;
  gap: 15px;
}

.custom-pagination-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-pagination-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #21236a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #21236a !important;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease;
}

.custom-pagination-arrow.disabled {
  border-color: #bcbfc5;
  color: #bcbfc5 !important;
  pointer-events: none;
  cursor: not-allowed;
}

.custom-pagination-pages {
  display: flex;
  gap: 6px;
  align-items: center;
}

.custom-pagination-pages a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #21236a !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0 !important;
  /* reset default padding */
}

.custom-pagination-pages a.active {
  background-color: #21236a !important;
  color: #ffffff !important;
}

/* Custom Search Wrapper */
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon-btn {
  position: absolute;
  left: 15px;
  z-index: 5;
  pointer-events: none;
}

.search-input-custom {
  border: 1px solid #dcddde;
  border-radius: 8px;
  padding: 10px 16px 10px 42px !important;
  font-size: 14px;
  color: #2c2d30;
  background-color: #fafafa;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  height: auto;
  min-height: 40px;
}

.search-input-custom:focus {
  background-color: #ffffff;
  border-color: #21236a;
  box-shadow: 0 0 0 3px rgba(33, 35, 106, 0.1);
  outline: none;
}

/* Custom Dropdown Filter */
.filter-select-custom {
  border: 1px solid #dcddde;
  border-radius: 8px;
  padding: 10px 36px 10px 16px !important;
  font-size: 14px;
  color: #2c2d30;
  background-color: #fafafa;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676A72'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  height: auto;
  min-height: 40px;
}

/* Academy row logo circle */
.academy-logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #bcbfc5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.academy-logo-circle.logo-blue {
  border-color: #21236a;
}

.academy-logo-circle img {
  width: 18px;
  height: 18px;
}

.text-dark-blue {
  color: #21236a;
}

.badge-exam {
  background-color: #e2e7f3;
  color: #21236a;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* Mobile responsive styling enhancements */
@media (max-width: 767px) {
  .custom-table-card {
    border-radius: 20px !important;
  }

  .custom-table-footer {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 16px 20px !important;
    justify-content: center;
  }

  .table tbody .expand-header span {
    border-right: none !important;
  }

  .table tbody td::before,
  .table tbody th::before {
    content: attr(data-label) " :" !important;
    color: #8e9198 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
  }
}

/* Figma-exact Sidebar Redesign Overrides */
.side-menu .nav-item.dropdown > .dropdown-toggle {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 10px 16px !important;
  margin: 8px 24px 4px 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  white-space: nowrap;
}

.side-menu .nav-item.dropdown > .dropdown-toggle:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Hide default Bootstrap dropdown toggle arrow indicator */
.side-menu .dropdown-toggle::after {
  display: none !important;
}

/* Custom Toggle Chevron icon positioning and behavior */
.side-menu .nav-item.dropdown .toggle-chevron {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
  line-height: 1;
}

.side-menu .nav-item.dropdown > .dropdown-toggle:hover .toggle-chevron {
  color: #ffffff;
}

/* Toggle rotation on expand/collapse */
.side-menu .nav-item.dropdown.open .toggle-chevron,
.side-menu .nav-item.dropdown.show .toggle-chevron {
  transform: rotate(180deg);
}

/* Sidebar Dropdown Menu (Submenu Container) */
.side-bar .dropdown-menu {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  display: none;
  /* jQuery controls show/hide via slideUp/slideDown */
  width: auto !important;
  box-shadow: none !important;
  float: none !important;
}

/* Submenu Link container items */
.side-bar .dropdown-menu li {
  margin: 1px 24px !important;
}

/* Nested Submenu links */
.side-bar .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 6px 16px 6px 28px !important;
  /* Indent slightly under header */
  display: flex !important;
  align-items: center;
  border-radius: 8px !important;
  transition:
    background-color 0.2s,
    color 0.2s;
  background-color: transparent !important;
  border: none !important;
  white-space: nowrap;
}

.side-bar .dropdown-menu .dropdown-item:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Active nested item highlight styling */
.side-bar .dropdown-menu li.active > .dropdown-item,
.side-bar .dropdown-menu .dropdown-item.active {
  background-color: #df001b !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

.side-bar .dropdown-menu li.active > .dropdown-item .menu-icon img,
.side-bar .dropdown-menu .dropdown-item.active .menu-icon img {
  filter: brightness(0) invert(1);
}

/* Figma Badges */
.side-menu .badge-live {
  background-color: #e10a1a !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 3px 6px !important;
  border-radius: 4px !important;
  margin-left: auto;
  line-height: 1;
}

.side-menu .badge-pending {
  background-color: #d29e1b !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 3px 6px !important;
  border-radius: 4px !important;
  margin-left: auto;
  line-height: 1;
}
