:root {
  color-scheme: light;
  --white: #ffffff;
  --blue: #00458f;
  --orange: #ea690b;
  --ink: #1d2430;
  --muted: #6c7885;
  --border: #e3e7ed;
  --panel: #f7f9fc;
  --shadow: 0 18px 40px rgba(0, 30, 60, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: linear-gradient(120deg, #ffffff 0%, #f2f5f9 60%, #eef3fb 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.app {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.app.sidebar-collapsed {
  grid-template-columns: 86px 1fr;
}

.sidebar {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  border-right: 1px solid var(--border);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 10px 0 30px rgba(0, 69, 143, 0.06);
  position: relative;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 4px;
}

.sidebar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--orange));
}

.brand-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.sidebar-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0, 69, 143, 0.2);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 69, 143, 0.08);
}

.toggle-bars,
.toggle-bars::before,
.toggle-bars::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
}

.toggle-bars::before {
  transform: translateY(-5px);
}

.toggle-bars::after {
  transform: translateY(3px);
}

.company-name {
  text-align: center;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  position: relative;
}

.company-name::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  margin: 10px auto 0;
}

.side-nav {
  display: grid;
  gap: 8px;
  padding-top: 6px;
  padding-bottom: 8px;
}

.side-nav a {
  padding: 12px 16px;
  border-radius: 0;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid transparent;
  background: #f3f6fb;
  display: flex;
  align-items: center;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.side-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  border-radius: 4px;
  background: transparent;
}

.side-nav a:hover {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(0, 69, 143, 0.22);
  box-shadow: 0 12px 24px rgba(0, 69, 143, 0.08);
}

.side-nav a.active {
  background: var(--white);
  color: var(--orange);
  border-color: rgba(234, 105, 11, 0.35);
  box-shadow: 0 12px 24px rgba(234, 105, 11, 0.12);
}

.side-nav a:hover::before {
  background: var(--blue);
}

.side-nav a.active::before {
  background: var(--orange);
}

.app.sidebar-collapsed .sidebar {
  padding: 18px 12px;
  gap: 10px;
  align-items: center;
}

.app.sidebar-collapsed .sidebar-header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.app.sidebar-collapsed .brand {
  display: none;
}

.app.sidebar-collapsed .company-name {
  display: none;
}

.app.sidebar-collapsed .side-nav {
  display: none;
}



.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar--compact {
  gap: 12px;
}

.search-wrap {
  position: relative;
  flex: 1 1 280px;
  max-width: 420px;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  width: 100%;
}


.search input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  color: var(--ink);
}

.search-icon {
  width: 14px;
  height: 14px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: var(--blue);
  right: -5px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 30, 60, 0.12);
  padding: 6px;
  display: none;
  z-index: 20;
}

.search-results.is-open {
  display: block;
}

.search-item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink);
}

.search-item:hover {
  background: var(--panel);
  color: var(--blue);
}

.search-empty {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.filters-toggle {
  border: 1px solid rgba(0, 69, 143, 0.4);
  background: var(--white);
  color: var(--blue);
  padding: 0 18px;
  height: 40px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filters-toggle:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
}

.toggle-track {
  width: 36px;
  height: 18px;
  border-radius: 999px;
  background: #dfe6f1;
  position: relative;
}

.toggle-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  top: 2px;
  left: 2px;
}

.profile-menu {
  position: relative;
}

.profile-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.profile-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(130deg, #ffffff 0%, var(--panel) 70%);
  border: 1px solid rgba(0, 69, 143, 0.12);
  padding: 6px 10px;
  border-radius: 12px !important;
  cursor: pointer;
  font: inherit;
  color: inherit;
  box-shadow: 0 10px 18px rgba(0, 69, 143, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.profile-trigger:hover,
.profile-menu:focus-within .profile-trigger {
  border-color: rgba(0, 69, 143, 0.25);
  box-shadow: 0 14px 24px rgba(0, 69, 143, 0.16);
  transform: translateY(-1px);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 16px rgba(0, 69, 143, 0.2);
}

.profile-text {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
}

.profile-role {
  font-size: 0.72rem;
  color: var(--muted);
}

.profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  border: 1px solid rgba(0, 69, 143, 0.12);
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(0, 30, 60, 0.16);
  min-width: 210px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.profile-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(0, 69, 143, 0.12);
  border-top: 1px solid rgba(0, 69, 143, 0.12);
  transform: rotate(45deg);
}

.profile-menu:hover .profile-dropdown,
.profile-menu:focus-within .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px !important;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  width: 100%;
  text-align: left;
  background: rgba(0, 69, 143, 0.04);
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.profile-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 69, 143, 0.08);
}

.profile-item:hover {
  background: var(--white);
  border-color: rgba(0, 69, 143, 0.2);
  color: var(--blue);
  box-shadow: 0 8px 16px rgba(0, 69, 143, 0.12);
  transform: translateY(-1px);
}

.profile-dropdown form {
  margin: 0;
}

.profile-item--danger {
  background: rgba(234, 105, 11, 0.08);
}

.profile-item--danger::before {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 105, 11, 0.14);
}

.profile-item--danger:hover {
  color: var(--orange);
  border-color: rgba(234, 105, 11, 0.4);
  box-shadow: 0 8px 16px rgba(234, 105, 11, 0.16);
}

.profile-button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

.content {
  padding: 28px;
  display: grid;
  gap: 24px;
}

.filters {
  display: grid;
  gap: 12px;
}

.filters.is-collapsed {
  display: none;
}

.filters-bar {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 30, 60, 0.06);
}

.filters-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
}

.filter-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.filter-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}

.filter-control {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 0 12px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  height: 44px;
}

.filter-input {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 0 10px;
  height: 44px;
}

.filter-input .filter-control {
  border: none;
  background: transparent;
  padding: 0;
  height: 100%;
}

.filter-icon {
  width: 14px;
  height: 14px;
  border: 2px solid var(--blue);
  position: relative;
  border-radius: 50% !important;
}

.filter-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: var(--blue);
  right: -5px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.app .content .filter-icon {
  border-radius: 50% !important;
}

.app .content .filter-icon::after {
  border-radius: 2px !important;
}

.filter-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-range .filter-control {
  padding: 0 10px;
  flex: 1;
  min-width: 0;
}

.filter-range-sep {
  color: var(--muted);
  font-weight: 600;
}

.filter-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.filter-advanced-btn {
  border: 1px solid rgba(0, 69, 143, 0.5);
  background: transparent;
  color: var(--blue);
  padding: 0 16px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  height: 44px;
  width: 100%;
}

.filter-advanced-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.filters-advanced {
  background: #f6f9fd;
  border: 1px solid var(--border);
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.filters-advanced.is-open {
  max-height: 360px;
  padding: 16px;
}

.filters-advanced-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filters-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filters-chips-row {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e7eef6;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-left: 3px solid var(--orange);
}

.chip-remove {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--muted);
}

.filters-clear {
  border: 1px solid rgba(234, 105, 11, 0.6);
  background: transparent;
  color: var(--orange);
  padding: 0 12px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  height: 44px;
  width: 100%;
}

.filters-clear:hover {
  background: rgba(234, 105, 11, 0.08);
  border-color: var(--orange);
}

.schedule {
  display: grid;
  gap: 24px;
}

.day-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6edf6;
}

.day-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 12px;
}

.day-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--orange);
}

.day-name {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.day-divider {
  width: 1px;
  height: 18px;
  background: #d5dde8;
  display: inline-block;
}

.day-date {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.day-count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 69, 143, 0.08);
  border: 1px solid rgba(0, 69, 143, 0.14);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.session-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.session-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 69, 143, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 220px;
  height: 100%;
}

.session-head {
  background: var(--blue);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.session-title {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.4;
}

.session-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.session-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.session-badge--light {
  background: rgba(255, 255, 255, 0.3);
}

.session-body {
  padding: 14px 16px 18px;
  display: grid;
  gap: 12px;
}

.teacher {
  display: flex;
  align-items: center;
  gap: 12px;
}

.teacher-photo {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(0, 69, 143, 0.15);
  background: #f3f6fb;
}

.teacher-name {
  font-weight: 700;
  color: var(--orange);
}

.teacher-title {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.session-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px solid #eef2f7;
}

.detail-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.detail-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.page-header h1 {
  font-size: 2rem;
  margin: 10px 0;
}

.lead {
  color: var(--muted);
  max-width: 580px;
}

.header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.stat-card h3 {
  font-size: 1.6rem;
  color: var(--blue);
}

.trend {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card.accent {
  border-color: rgba(0, 69, 143, 0.2);
  background: linear-gradient(135deg, rgba(0, 69, 143, 0.08), rgba(234, 105, 11, 0.08));
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.link {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef3fb;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 8px;
}

.tag.orange {
  background: rgba(234, 105, 11, 0.15);
  color: var(--orange);
}

.tag.blue {
  background: rgba(0, 69, 143, 0.15);
  color: var(--blue);
}

.card-text {
  color: var(--muted);
  margin-bottom: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0, 69, 143, 0.2);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
}

.progress-group {
  display: grid;
  gap: 14px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.progress-bar {
  height: 8px;
  background: #e7edf6;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.timeline {
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline-date {
  display: inline-block;
  min-width: 72px;
  font-weight: 700;
  color: var(--blue);
}

.wide-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}

.wide-banner p {
  color: var(--muted);
}

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

  .app.sidebar-collapsed {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
  }

  .brand {
    padding: 0;
  }

  .brand-logo {
    width: 110px;
  }

  .sidebar-toggle {
    width: 36px;
    height: 36px;
  }

  .company-name {
    margin-bottom: 0;
    letter-spacing: 0.16em;
    text-align: left;
  }

  .company-name::after {
    display: none;
  }

  .side-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .side-nav a {
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .side-nav a:hover {
    border-color: transparent;
    border-bottom-color: var(--blue);
    background: transparent;
    box-shadow: none;
  }

  .side-nav a.active {
    border-color: transparent;
    border-bottom-color: var(--orange);
    background: transparent;
    box-shadow: none;
  }

  .side-nav a::before {
    display: none;
  }

}

@media (max-width: 768px) {
  .topbar {
    padding: 16px 20px;
  }

  .content {
    padding: 20px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .profile-text {
    display: none;
  }

  .search-wrap {
    max-width: none;
  }

  .day-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .session-details {
    grid-template-columns: 1fr;
  }

  .session-badges {
    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  .filters-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-actions {
    justify-content: flex-start;
  }

  .filters-advanced-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .filters-row {
    grid-template-columns: 1fr;
  }

  .filters-advanced-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .session-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.app .sidebar *,
.app .content * {
  border-radius: 0 !important;
}

@media (max-width: 520px) {
  .toggle-label {
    display: none;
  }

  .profile-dropdown {
    right: auto;
    left: 0;
  }
}
