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

html {
  height: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 50vh;
  padding-bottom: 50vh;
  position: relative;
}

tr {
  transition: all 250ms ease;
  filter: blur(8px);
  opacity: 0.4;
  scroll-snap-align: center;
}
tr:hover {
  background-color: rgba(51, 65, 85, 0.5);
}
tr::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(99, 158, 241, 0.02), rgba(99, 158, 241, 0.08) 50%, rgba(99, 158, 241, 0.02));
  box-shadow: 0 0 150px rgba(99, 158, 241, 0.15), inset 0 0 50px rgba(99, 158, 241, 0.05);
  z-index: -1;
  pointer-events: none;
  border-left: 1px solid rgba(99, 158, 241, 0.1);
  border-right: 1px solid rgba(99, 158, 241, 0.1);
}

nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  z-index: 50;
}
nav a,
nav button {
  color: #f8fafc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 250ms ease;
  font-weight: 500;
  background-color: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
nav a:hover,
nav button:hover {
  background-color: #334155;
  color: #818cf8;
}
nav .blur-toggle {
  background-color: rgba(99, 158, 241, 0.6);
}
nav .blur-toggle:hover {
  background-color: rgba(99, 158, 241, 0.8);
}
nav .blur-toggle.active {
  background-color: rgba(16, 185, 129, 0.6);
}
nav .blur-toggle.active:hover {
  background-color: rgba(16, 185, 129, 0.8);
}
nav span {
  color: #94a3b8;
  padding: 0.5rem 1rem;
  background-color: rgba(30, 41, 59, 0.6);
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
}

hr {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.schedule-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 2rem;
}

.schedule-container {
  width: 100%;
  max-width: 900px;
  position: relative;
  overflow: visible;
  border-radius: 1rem;
  background: transparent;
  box-shadow: none;
  padding: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table th {
  background-color: rgba(99, 158, 241, 0.15);
  color: #818cf8;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  transition: all 250ms ease;
  text-align: center;
}
table tr {
  transition: all 250ms ease;
  filter: blur(8px);
  opacity: 0.4;
  scroll-snap-align: center;
}
table tr:hover {
  background-color: rgba(51, 65, 85, 0.5);
}
table tr.focused {
  filter: blur(0);
  opacity: 1;
  background-color: rgba(99, 158, 241, 0.1);
  transform: scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
table tr.focused td {
  border-bottom-color: transparent;
  position: relative;
}
table tr.focused td::before {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: 0.875rem;
  font-weight: 600;
  color: #818cf8;
  white-space: nowrap;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
}
table.no-blur tr {
  filter: blur(0) !important;
  opacity: 1 !important;
}
table.no-blur tr td::before {
  display: none !important;
}
table.no-blur tr.focused {
  background-color: transparent;
  transform: none;
  box-shadow: none;
}
table.no-blur tr.focused td {
  border-bottom-color: transparent;
}
table a {
  color: #818cf8;
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease;
}
table a:hover {
  color: #639ef1;
  text-decoration: underline;
}
table form {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
table form select {
  background-color: #334155;
  color: #f8fafc;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: all 250ms ease;
}
table form select:hover {
  border-color: #639ef1;
}
table form select:focus {
  outline: none;
  border-color: #639ef1;
  box-shadow: 0 0 0 3px rgba(99, 158, 241, 0.2);
}
table form button {
  background-color: #639ef1;
  color: #f8fafc;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms ease;
}
table form button:hover {
  background-color: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
table form button:active {
  transform: translateY(0);
}

.flashes {
  list-style: none;
  max-width: 600px;
  margin: 1.5rem auto;
}
.flashes li {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.flashes li.success {
  background-color: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  color: #10b981;
}
.flashes li.error {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  color: #ef4444;
}
.flashes li.warning {
  background-color: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  color: #f59e0b;
}

@media (max-width: 768px) {
  nav {
    padding: 0.5rem;
    gap: 0.25rem;
    font-size: 0.875rem;
  }
  nav span {
    width: 100%;
    margin-left: 0;
    margin-top: 0.25rem;
  }
  .schedule-wrapper {
    padding: 0.5rem;
    min-height: calc(100vh - 150px);
  }
  .schedule-container {
    padding: 0.5rem;
    overflow-x: auto;
  }
  table {
    font-size: 0.8rem;
    min-width: 100%;
  }
  table th,
  table td {
    padding: 0.25rem 0.5rem;
  }
  table th {
    top: 0;
    font-size: 0.85rem;
  }
  table tr.focused td::before {
    top: 0.2rem;
    font-size: 0.7rem;
  }
}

/*# sourceMappingURL=main.css.map */
