/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 */
/* line 1, app/assets/stylesheets/base/_tokens.scss */
:root {
  --color-brand-50: #eff6ff;
  --color-brand-100: #dbeafe;
  --color-brand-500: #3b82f6;
  --color-brand-700: #1d4ed8;
  --color-brand-900: #1e3a8a;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-500: #64748b;
  --color-gray-700: #334155;
  --color-gray-900: #0f172a;
  --color-success: #16a34a;
  --color-warning: #d97706;
  --color-danger: #dc2626;
  --surface-page: var(--color-gray-50);
  --surface-card: #ffffff;
  --surface-sidebar: var(--color-gray-900);
  --text-primary: var(--color-gray-900);
  --text-secondary: var(--color-gray-700);
  --text-muted: var(--color-gray-500);
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 6px 14px rgba(15, 23, 42, 0.08);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --topbar-height: 64px;
  --sidebar-width: 250px;
}

/* line 1, app/assets/stylesheets/base/_reset.scss */
* {
  box-sizing: border-box;
}

/* line 5, app/assets/stylesheets/base/_reset.scss */
html,
body {
  margin: 0;
  padding: 0;
}

/* line 11, app/assets/stylesheets/base/_reset.scss */
body {
  background: var(--surface-page);
  color: var(--text-primary);
}

/* line 16, app/assets/stylesheets/base/_reset.scss */
a {
  text-decoration: none;
}

/* line 20, app/assets/stylesheets/base/_reset.scss */
:focus-visible {
  outline: 2px solid var(--color-brand-500);
  outline-offset: 2px;
}

/* line 1, app/assets/stylesheets/base/_typography.scss */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
}

/* line 7, app/assets/stylesheets/base/_typography.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text-primary);
}

/* line 17, app/assets/stylesheets/base/_typography.scss */
h1 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

/* line 22, app/assets/stylesheets/base/_typography.scss */
h2 {
  font-size: var(--text-xl);
  font-weight: 600;
}

/* line 27, app/assets/stylesheets/base/_typography.scss */
p {
  margin: 0;
  color: var(--text-secondary);
}

/* line 1, app/assets/stylesheets/layout/_shell.scss */
.app-body {
  background: var(--surface-page);
}

/* line 5, app/assets/stylesheets/layout/_shell.scss */
.app-shell {
  min-height: 100vh;
}

/* line 9, app/assets/stylesheets/layout/_shell.scss */
.app-main {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

/* line 14, app/assets/stylesheets/layout/_shell.scss */
.app-content {
  padding: var(--space-6);
  max-width: 1360px;
}

/* line 19, app/assets/stylesheets/layout/_shell.scss */
.app-flash-slot {
  position: sticky;
  top: var(--topbar-height);
  z-index: 10;
}

/* line 25, app/assets/stylesheets/layout/_shell.scss */
.public-content {
  padding: calc(var(--topbar-height) + var(--space-4)) var(--space-6) var(--space-6);
}

@media (max-width: 992px) {
  /* line 30, app/assets/stylesheets/layout/_shell.scss */
  .app-main {
    margin-left: 0;
  }
  /* line 34, app/assets/stylesheets/layout/_shell.scss */
  .app-content,
.public-content {
    padding: var(--space-4);
  }
}

/* line 1, app/assets/stylesheets/layout/_topbar.scss */
.topbar {
  height: var(--topbar-height);
  background: #ffffff;
  border-bottom: 1px solid var(--color-gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-4);
  gap: var(--space-4);
}

/* line 15, app/assets/stylesheets/layout/_topbar.scss */
.topbar__left,
.topbar__center,
.topbar__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* line 23, app/assets/stylesheets/layout/_topbar.scss */
.topbar__center {
  margin-left: auto;
  margin-right: auto;
}

/* line 28, app/assets/stylesheets/layout/_topbar.scss */
.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* line 34, app/assets/stylesheets/layout/_topbar.scss */
.topbar__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-brand-700);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
}

/* line 47, app/assets/stylesheets/layout/_topbar.scss */
.topbar__brand-text {
  color: var(--text-primary);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* line 53, app/assets/stylesheets/layout/_topbar.scss */
.topbar__link,
.topbar__account {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* line 60, app/assets/stylesheets/layout/_topbar.scss */
.topbar__link:hover,
.topbar__account:hover {
  color: var(--color-brand-700);
}

/* line 65, app/assets/stylesheets/layout/_topbar.scss */
.topbar-inline-dropdown .dropdown-toggle::after {
  margin-left: var(--space-2);
}

@media (max-width: 992px) {
  /* line 70, app/assets/stylesheets/layout/_topbar.scss */
  .topbar {
    padding: 0 var(--space-3);
  }
  /* line 74, app/assets/stylesheets/layout/_topbar.scss */
  .topbar__brand-text {
    display: none;
  }
  /* line 78, app/assets/stylesheets/layout/_topbar.scss */
  .topbar__center {
    display: none;
  }
}

/* line 1, app/assets/stylesheets/layout/_sidebar.scss */
.app-sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  background: var(--surface-sidebar);
  color: #e2e8f0;
  padding: var(--space-6) var(--space-4);
  position: fixed;
  top: 0;
  left: 0;
}

/* line 12, app/assets/stylesheets/layout/_sidebar.scss */
.app-sidebar__header {
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

/* line 21, app/assets/stylesheets/layout/_sidebar.scss */
.app-sidebar__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* line 27, app/assets/stylesheets/layout/_sidebar.scss */
.app-sidebar__link {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-md);
  color: #cbd5e1;
  padding: 0.65rem 0.75rem;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

/* line 38, app/assets/stylesheets/layout/_sidebar.scss */
.app-sidebar__link:hover {
  background: rgba(148, 163, 184, 0.18);
  color: #fff;
}

/* line 43, app/assets/stylesheets/layout/_sidebar.scss */
.app-sidebar__link.active {
  background: rgba(59, 130, 246, 0.3);
  color: #fff;
}

@media (max-width: 992px) {
  /* line 49, app/assets/stylesheets/layout/_sidebar.scss */
  .app-sidebar {
    display: none;
  }
}

/* line 1, app/assets/stylesheets/components/_card.scss */
.ui-card {
  background: var(--surface-card);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* line 8, app/assets/stylesheets/components/_card.scss */
.ui-card__body {
  padding: var(--space-4);
}

/* line 1, app/assets/stylesheets/components/_badge.scss */
.ui-badge, .role-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.15rem 0.55rem;
}

/* line 10, app/assets/stylesheets/components/_badge.scss */
.role-badge {
  color: #fff;
}

/* line 15, app/assets/stylesheets/components/_badge.scss */
.role-admin {
  background-color: #dc2626;
}

/* line 16, app/assets/stylesheets/components/_badge.scss */
.role-ta {
  background-color: #d97706;
}

/* line 17, app/assets/stylesheets/components/_badge.scss */
.role-student {
  background-color: #16a34a;
}

/* line 18, app/assets/stylesheets/components/_badge.scss */
.role-guest {
  background-color: #64748b;
}

/* line 1, app/assets/stylesheets/components/_btn.scss */
.btn-ui-primary {
  background: var(--color-brand-700);
  color: #fff;
  border: 1px solid var(--color-brand-700);
}

/* line 7, app/assets/stylesheets/components/_btn.scss */
.btn-ui-primary:hover,
.btn-ui-primary:focus {
  background: var(--color-brand-900);
  border-color: var(--color-brand-900);
  color: #fff;
}

/* line 1, app/assets/stylesheets/components/_stat-card.scss */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

/* line 8, app/assets/stylesheets/components/_stat-card.scss */
.stat-card {
  background: var(--surface-card);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

/* line 15, app/assets/stylesheets/components/_stat-card.scss */
.stat-card__label {
  color: var(--text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

/* line 24, app/assets/stylesheets/components/_stat-card.scss */
.stat-card__value {
  color: var(--text-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  /* line 32, app/assets/stylesheets/components/_stat-card.scss */
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  /* line 38, app/assets/stylesheets/components/_stat-card.scss */
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

/* line 1, app/assets/stylesheets/components/_data-table.scss */
.ui-table-wrap {
  overflow-x: auto;
  background: var(--surface-card);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
}

/* line 8, app/assets/stylesheets/components/_data-table.scss */
.ui-table {
  margin: 0;
}

/* line 12, app/assets/stylesheets/components/_data-table.scss */
.ui-table thead th {
  position: sticky;
  top: 0;
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 22, app/assets/stylesheets/components/_data-table.scss */
.ui-table tbody td {
  vertical-align: middle;
}

/* line 1, app/assets/stylesheets/components/_flash.scss */
.flash-stack {
  padding: var(--space-3) var(--space-4) 0;
}

/* line 5, app/assets/stylesheets/components/_flash.scss */
.flash-stack .alert {
  max-width: 720px;
  margin: 0 auto var(--space-2);
  box-shadow: var(--shadow-sm);
}

/* line 1, app/assets/stylesheets/components/_link-status.scss */
.icon-button {
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

/* line 16, app/assets/stylesheets/components/_link-status.scss */
.icon-button:hover {
  color: var(--color-danger);
}

/* line 20, app/assets/stylesheets/components/_link-status.scss */
.icon-button i {
  pointer-events: none;
}

/* line 24, app/assets/stylesheets/components/_link-status.scss */
.link-button {
  min-width: 110px;
}

/* line 28, app/assets/stylesheets/components/_link-status.scss */
.missing {
  color: var(--color-danger);
  border-color: var(--color-danger);
  pointer-events: none;
  opacity: 0.6;
}

/* line 35, app/assets/stylesheets/components/_link-status.scss */
.available {
  color: var(--color-success);
  border-color: var(--color-success);
}

/* line 1, app/assets/stylesheets/components/_page-header.scss */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

/* line 9, app/assets/stylesheets/components/_page-header.scss */
.page-header__meta {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

/* line 1, app/assets/stylesheets/pages/_admin_dashboard.scss */
.admin-dashboard__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
}

/* line 8, app/assets/stylesheets/pages/_admin_dashboard.scss */
.admin-dashboard__table-card {
  background: var(--surface-card);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* line 15, app/assets/stylesheets/pages/_admin_dashboard.scss */
.icon-button {
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

/* line 29, app/assets/stylesheets/pages/_admin_dashboard.scss */
.icon-button:hover {
  color: var(--color-danger);
}

/* line 1, app/assets/stylesheets/pages/_students_index.scss */
.students-index__actions {
  margin-bottom: var(--space-4);
}

/* line 5, app/assets/stylesheets/pages/_students_index.scss */
.students-index__table-card {
  background: var(--surface-card);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* line 12, app/assets/stylesheets/pages/_students_index.scss */
.students-index__table-header {
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-gray-200);
}

/* line 17, app/assets/stylesheets/pages/_students_index.scss */
.students-index__row-actions {
  display: inline-flex;
  gap: var(--space-2);
}

/* line 1, app/assets/stylesheets/pages/_teams_index.scss */
.teams-index__actions {
  margin-bottom: var(--space-4);
}

/* line 5, app/assets/stylesheets/pages/_teams_index.scss */
.teams-index__table-card {
  background: var(--surface-card);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* line 12, app/assets/stylesheets/pages/_teams_index.scss */
.teams-index__table-header {
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-gray-200);
}

/* line 17, app/assets/stylesheets/pages/_teams_index.scss */
.teams-index__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* line 23, app/assets/stylesheets/pages/_teams_index.scss */
.teams-index__links-row {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}

/* line 29, app/assets/stylesheets/pages/_teams_index.scss */
.teams-index__row-actions {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* line 1, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__actions {
  margin-bottom: var(--space-4);
}

/* line 5, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-4);
}

/* line 11, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__year-card {
  border-radius: var(--radius-lg);
}

/* line 15, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__year-title {
  margin-bottom: var(--space-3);
}

/* line 19, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__term-list {
  display: grid;
  gap: var(--space-3);
}

/* line 24, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__term-card {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  background: #fff;
}

/* line 31, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__term-card--selected {
  border-color: var(--color-brand-700);
  box-shadow: 0 0 0 1px var(--color-brand-700) inset;
}

/* line 36, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__term-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

/* line 44, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__term-header h3 {
  font-size: var(--text-base);
  font-weight: 600;
}

/* line 49, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__term-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* line 55, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__optional {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* line 60, app/assets/stylesheets/pages/_semesters_home.scss */
.semesters-home__optional-header {
  margin: 0;
}

/* line 1, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__list {
  display: grid;
  gap: var(--space-3);
}

/* line 6, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__section {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

/* line 14, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__item {
  border-radius: var(--radius-lg);
}

/* line 18, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

/* line 25, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__loading {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid #9bd9ff;
  background: #eaf7ff;
  color: #16324a;
  border-radius: var(--radius-md);
}

/* line 34, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__content-row {
  margin-top: var(--space-2);
}

/* line 38, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__content {
  text-align: center;
}

/* line 42, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__filters {
  margin-bottom: var(--space-4);
}

/* line 46, app/assets/stylesheets/pages/_semesters_status.scss */
.semesters-status__filter-btn {
  min-width: 120px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

/* line 52, app/assets/stylesheets/pages/_semesters_status.scss */
.team-status-table-wrap {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* line 1, app/assets/stylesheets/pages/_semesters_classlist.scss */
.semesters-classlist__card {
  max-width: 760px;
}

/* line 1, app/assets/stylesheets/pages/_semesters_show.scss */
.semesters-show {
  overflow-x: hidden;
}

/* line 5, app/assets/stylesheets/pages/_semesters_show.scss */
.semesters-show .main-content {
  flex: 1;
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 20px;
  min-width: 0;
  overflow-y: visible;
  overflow-x: hidden;
  background: #fff;
}

/* line 16, app/assets/stylesheets/pages/_semesters_show.scss */
.semesters-show .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  padding-right: 40px;
  position: relative;
}

/* line 27, app/assets/stylesheets/pages/_semesters_show.scss */
.semesters-show .tooltip-inner {
  max-width: 320px;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: left;
  padding: 8px 10px;
}

/* line 35, app/assets/stylesheets/pages/_semesters_show.scss */
.semesters-show .sprint-toggle.active {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

/* line 40, app/assets/stylesheets/pages/_semesters_show.scss */
.semesters-show .team-filter.active {
  color: #fff;
  background-color: #1f4cb2;
  border-color: #1f4cb2;
}

/* line 46, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

/* line 52, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-card {
  border: 1px solid #d9e2f7;
  border-radius: 8px;
  background: #f8fbff;
  padding: 12px;
  text-align: left;
}

/* line 60, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

/* line 66, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-meta {
  color: #5b6680;
  font-size: 0.85rem;
}

/* line 71, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-risk {
  color: #8a2415;
  font-size: 0.78rem;
  font-weight: 600;
}

/* line 77, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-ok {
  color: #2c6f43;
  font-size: 0.78rem;
}

/* line 82, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-sprints {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 88, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-sprint-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 4px 10px;
}

/* line 98, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-sprint-pill.is-healthy {
  background: #eaf8ef;
  color: #145f31;
}

/* line 103, app/assets/stylesheets/pages/_semesters_show.scss */
.team-overview-sprint-pill.is-risk {
  background: #fff3f0;
  color: #9f2f1d;
}

/* line 108, app/assets/stylesheets/pages/_semesters_show.scss */
.github-inspector {
  text-align: left;
  border: 1px solid #d8deea;
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px 12px;
}

/* line 116, app/assets/stylesheets/pages/_semesters_show.scss */
.github-inspector summary {
  cursor: pointer;
  font-weight: 700;
}

/* line 121, app/assets/stylesheets/pages/_semesters_show.scss */
.github-inspector-team {
  border-top: 1px dashed #c7cfdf;
  padding-top: 10px;
}

/* line 126, app/assets/stylesheets/pages/_semesters_show.scss */
.github-inspector-sprint {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  padding: 2px 0;
}

/* line 134, app/assets/stylesheets/pages/_semesters_show.scss */
.team-risk-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7rem;
  color: #fff;
  background: #b5392c;
  border-radius: 999px;
  padding: 2px 8px;
}

/* line 144, app/assets/stylesheets/pages/_semesters_show.scss */
.status-metric-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  font-size: 0.78rem;
  line-height: 1.25;
}

/* line 153, app/assets/stylesheets/pages/_semesters_show.scss */
.team-total-row {
  background: #eef4ff;
}

/* line 157, app/assets/stylesheets/pages/_semesters_show.scss */
.team-total-row td {
  font-size: 0.75rem;
  border-top: 2px solid #c4d3f3;
}

/* line 162, app/assets/stylesheets/pages/_semesters_show.scss */
.github-score-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* line 169, app/assets/stylesheets/pages/_semesters_show.scss */
.github-score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* line 179, app/assets/stylesheets/pages/_semesters_show.scss */
.github-score-badge.is-strong {
  background: #e8f8ee;
  color: #196f3d;
}

/* line 184, app/assets/stylesheets/pages/_semesters_show.scss */
.github-score-badge.is-solid {
  background: #ecf4ff;
  color: #1a4f9c;
}

/* line 189, app/assets/stylesheets/pages/_semesters_show.scss */
.github-score-badge.is-watch {
  background: #fff7e5;
  color: #9a6700;
}

/* line 194, app/assets/stylesheets/pages/_semesters_show.scss */
.github-score-badge.is-risk {
  background: #fff0ed;
  color: #a62d1d;
}

/* line 199, app/assets/stylesheets/pages/_semesters_show.scss */
.github-band {
  font-size: 0.66rem;
  color: #53607a;
  font-weight: 600;
}

/* line 205, app/assets/stylesheets/pages/_semesters_show.scss */
.github-score-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

/* line 212, app/assets/stylesheets/pages/_semesters_show.scss */
.github-chip {
  font-size: 0.62rem;
  background: #eff3fa;
  color: #293858;
  border-radius: 999px;
  padding: 1px 6px;
  line-height: 1.3;
}

/* line 1, app/assets/stylesheets/pages/_auth_edit.scss */
.auth-edit {
  display: flex;
  justify-content: center;
}

/* line 6, app/assets/stylesheets/pages/_auth_edit.scss */
.auth-edit__card {
  width: 100%;
  max-width: 760px;
}

/* line 11, app/assets/stylesheets/pages/_auth_edit.scss */
.auth-edit__form .form-group {
  margin-bottom: var(--space-3);
}

/* line 15, app/assets/stylesheets/pages/_auth_edit.scss */
.auth-edit__section {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-gray-200);
}

/* line 21, app/assets/stylesheets/pages/_auth_edit.scss */
.auth-edit__section:last-of-type {
  border-bottom: 0;
}

/* line 25, app/assets/stylesheets/pages/_auth_edit.scss */
.auth-edit__hint {
  margin-bottom: var(--space-2);
  font-style: italic;
  font-weight: 500;
}

/* line 31, app/assets/stylesheets/pages/_auth_edit.scss */
.auth-edit__pending {
  margin-top: var(--space-1);
  margin-bottom: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* line 38, app/assets/stylesheets/pages/_auth_edit.scss */
.auth-edit__actions {
  margin-top: var(--space-4);
}

/* line 1, app/assets/stylesheets/pages/_auth_login.scss */
.app-body.auth-login-page .public-content {
  padding: 0;
}

/* line 5, app/assets/stylesheets/pages/_auth_login.scss */
.app-body.auth-login-page .app-flash-slot--public {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1100;
  pointer-events: none;
}

/* line 14, app/assets/stylesheets/pages/_auth_login.scss */
.app-body.auth-login-page .app-flash-slot--public .alert {
  pointer-events: auto;
}

/* line 18, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-fullbleed {
  min-height: calc(100vh - var(--topbar-height));
  background-image: linear-gradient(to bottom right, rgba(0, 61, 165, 0.82), rgba(0, 61, 165, 0.52)), url(/assets/login-backdrop.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 28, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-fullbleed__overlay {
  min-height: calc(100vh - var(--topbar-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

/* line 36, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
}

/* line 42, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card__title {
  text-align: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

/* line 48, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card__form .form-group {
  margin-bottom: var(--space-3);
}

/* line 52, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card__remember {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* line 58, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card__links {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
}

/* line 65, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card__link {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* line 71, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card__link:hover {
  color: var(--color-brand-700);
}

/* line 75, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card__actions {
  display: flex;
  justify-content: center;
}

/* line 80, app/assets/stylesheets/pages/_auth_login.scss */
.auth-login-card__actions .btn {
  min-width: 140px;
}

/* line 44, app/assets/stylesheets/application.scss */
body {
  padding-top: 0;
}

/* line 47, app/assets/stylesheets/application.scss */
.starter-template {
  padding: 3rem 1.5rem;
  text-align: center;
}

/* line 52, app/assets/stylesheets/application.scss */
.bg-color1 {
  background-color: #0D3182;
}

/* line 56, app/assets/stylesheets/application.scss */
.bg-color2 {
  background-color: #888C8F;
}

/* line 60, app/assets/stylesheets/application.scss */
.box-cont {
  max-width: 300;
}

/* line 64, app/assets/stylesheets/application.scss */
.lnk-blue:hover,
.lnk-blue:focus {
  color: #0D3182;
}

/* line 69, app/assets/stylesheets/application.scss */
.btn-t {
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
}

/* line 75, app/assets/stylesheets/application.scss */
.btn-t:hover,
.btn-t:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #2b3c6451;
}

/* line 81, app/assets/stylesheets/application.scss */
.btn-t::before {
  width: 1.25em;
  line-height: 0;
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

/* line 88, app/assets/stylesheets/application.scss */
.dropdown-toggle {
  outline: 0;
}

/* line 90, app/assets/stylesheets/application.scss */
.btn-toggle {
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
}

/* line 96, app/assets/stylesheets/application.scss */
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #2b3c6451;
}

/* line 102, app/assets/stylesheets/application.scss */
.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

/* line 110, app/assets/stylesheets/application.scss */
.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, 0.85);
}

/* line 113, app/assets/stylesheets/application.scss */
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

/* line 117, app/assets/stylesheets/application.scss */
.btn-toggle-nav a {
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
}

/* line 122, app/assets/stylesheets/application.scss */
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #2b3c6451;
}

/* line 127, app/assets/stylesheets/application.scss */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

/* line 135, app/assets/stylesheets/application.scss */
html {
  scroll-padding-top: 65px;
}

/* line 138, app/assets/stylesheets/application.scss */
.semester-list {
  margin-top: 20px;
}

/* line 142, app/assets/stylesheets/application.scss */
.year-header {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* line 149, app/assets/stylesheets/application.scss */
.semester-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

/* line 157, app/assets/stylesheets/application.scss */
.semester-name {
  font-size: 16px;
  font-weight: bold;
}

/* line 162, app/assets/stylesheets/application.scss */
.semester-link {
  margin-left: 10px;
}

/* line 167, app/assets/stylesheets/application.scss */
.box {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
}

/* line 174, app/assets/stylesheets/application.scss */
.semester-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

/* line 182, app/assets/stylesheets/application.scss */
.semester-name {
  font-size: 16px;
  font-weight: bold;
}

/* line 187, app/assets/stylesheets/application.scss */
.semester-link {
  margin-left: 10px;
}

/* line 191, app/assets/stylesheets/application.scss */
.semester-link a {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: 1px solid #007bff;
  border-radius: 5px;
  padding: 5px 10px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

/* line 202, app/assets/stylesheets/application.scss */
.semester-link-container {
  display: flex;
  justify-content: flex-end;
  width: 150px;
}

/* line 208, app/assets/stylesheets/application.scss */
.lnk-blue {
  width: 100%;
  text-align: center;
}

/* line 213, app/assets/stylesheets/application.scss */
.fix-upload-btn {
  position: relative;
  z-index: 1100;
  /* higher than any nearby overlays */
}

/* line 5, app/assets/stylesheets/semesters.scss */
.lnk-blue {
  color: #0D3182;
}

/* ----------------------------
 * Team Status UI refinements
 * - Lightweight tooltips (CSS-only)
 * - More readable, scrollable status grid on mobile
 * ---------------------------- */
/* line 15, app/assets/stylesheets/semesters.scss */
.team-status-legend {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

/* line 24, app/assets/stylesheets/semesters.scss */
.team-status-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 30, app/assets/stylesheets/semesters.scss */
.team-status-icon {
  height: 16px;
  width: 16px;
  display: inline-block;
}

/* Tooltip trigger wrapper.
     Accessible on keyboard via tabindex; does not require JS. */
/* line 38, app/assets/stylesheets/semesters.scss */
.ui-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: help;
}

/* line 47, app/assets/stylesheets/semesters.scss */
.ui-tooltip:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* line 53, app/assets/stylesheets/semesters.scss */
.ui-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  z-index: 1080;
  display: none;
  max-width: 260px;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 6px;
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-size: 0.75rem;
  white-space: normal;
  text-align: left;
}

/* line 73, app/assets/stylesheets/semesters.scss */
.ui-tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%);
  z-index: 1081;
  display: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--bs-border-color);
}

/* line 89, app/assets/stylesheets/semesters.scss */
.ui-tooltip:hover::after,
.ui-tooltip:hover::before,
.ui-tooltip:focus::after,
.ui-tooltip:focus::before,
.ui-tooltip:focus-visible::after,
.ui-tooltip:focus-visible::before {
  display: block;
}

/* Big sprint status grid: keep it scrollable and readable. */
/* line 99, app/assets/stylesheets/semesters.scss */
.team-status-table-wrap {
  -webkit-overflow-scrolling: touch;
  position: relative;
  isolation: isolate;
}

/* line 105, app/assets/stylesheets/semesters.scss */
.team-status-table {
  --sticky-col-1-width: 160px;
  --sticky-col-2-width: 140px;
  border-collapse: separate;
  border-spacing: 0;
  white-space: nowrap;
  position: relative;
}

/* line 114, app/assets/stylesheets/semesters.scss */
.team-status-table thead th {
  position: sticky;
  top: 0;
  background-color: var(--bs-light, #f8f9fa);
  z-index: 5;
}

/* line 121, app/assets/stylesheets/semesters.scss */
.team-status-table thead th.sticky-col-1,
.team-status-table thead th.sticky-col-2 {
  z-index: 60;
  background-color: var(--bs-light, #f8f9fa);
}

/* line 127, app/assets/stylesheets/semesters.scss */
.team-status-table th.sticky-col-1,
.team-status-table td.sticky-col-1 {
  position: sticky;
  left: 0;
  width: var(--sticky-col-1-width);
  min-width: var(--sticky-col-1-width);
  max-width: var(--sticky-col-1-width);
  background-color: var(--bs-body-bg, #ffffff);
  background-clip: padding-box;
  z-index: 40;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* line 143, app/assets/stylesheets/semesters.scss */
.team-status-table th.sticky-col-2,
.team-status-table td.sticky-col-2 {
  position: sticky;
  left: var(--sticky-col-1-width);
  width: var(--sticky-col-2-width);
  min-width: var(--sticky-col-2-width);
  max-width: var(--sticky-col-2-width);
  background-color: var(--bs-body-bg, #ffffff);
  background-clip: padding-box;
  z-index: 40;
  box-shadow: 1px 0 0 var(--bs-border-color);
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* line 160, app/assets/stylesheets/semesters.scss */
.team-status-table tbody td.sticky-col-1,
.team-status-table tbody td.sticky-col-2 {
  z-index: 50;
}

/* Ensure long names never paint over other columns */
/* line 166, app/assets/stylesheets/semesters.scss */
.team-status-table .sticky-cell {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* line 175, app/assets/stylesheets/semesters.scss */
  .team-status-table {
    --sticky-col-1-width: 140px;
    --sticky-col-2-width: 120px;
    font-size: 0.78rem;
  }
  /* Sticky columns are helpful on desktop, but can overlap on small widths.
         Disable stickiness at <=768px to keep the grid readable. */
  /* line 183, app/assets/stylesheets/semesters.scss */
  .team-status-table th.sticky-col-1,
.team-status-table td.sticky-col-1,
.team-status-table th.sticky-col-2,
.team-status-table td.sticky-col-2 {
    position: static;
    left: auto;
    z-index: auto;
    background: inherit;
  }
  /* line 193, app/assets/stylesheets/semesters.scss */
  .team-status-table th,
.team-status-table td {
    padding: 0.35rem 0.4rem;
  }
  /* line 198, app/assets/stylesheets/semesters.scss */
  .sprint-toggle {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
  }
}
