@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-400-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/outfit-latin-600-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.bo {
  background: #f5f7fb;
  color: #1c2430;
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.bo * {
  box-sizing: border-box;
}
.bo h1,
.bo h2,
.bo h3,
.bo h4 {
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.25em;
  color: #011a61;
}
.bo h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.bo h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}
.bo a {
  color: #011a61;
}
.bo a:focus-visible,
.bo button:focus-visible,
.bo summary:focus-visible,
.bo input:focus-visible,
.bo select:focus-visible,
.bo textarea:focus-visible,
.bo [tabindex]:focus-visible {
  outline: 3px solid rgb(231, 178, 3);
  outline-offset: 2px;
  border-radius: 4px;
}
.bo__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 560px) {
  .bo__container {
    padding: 0 0.85rem;
  }
}
.bo__topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #011a61;
  box-shadow: 0 2px 10px rgba(1, 26, 97, 0.18);
}
.bo__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}
.bo__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.bo__brand img {
  height: 34px;
  width: auto;
  display: block;
}
.bo__nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
@media (max-width: 860px) {
  .bo__nav-toggle {
    display: inline-flex;
  }
}
.bo__nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.bo__nav li {
  display: flex;
}
.bo__nav a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.bo__nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.bo__nav a.is-current {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
@media (max-width: 860px) {
  .bo__nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0.5rem 0 0.75rem;
    gap: 0.15rem;
  }
  .bo__nav.is-open {
    display: flex;
  }
  .bo__nav a {
    padding: 0.75rem 0.6rem;
  }
}
.bo__nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  justify-content: space-between;
}
@media (max-width: 860px) {
  .bo__nav-wrap {
    flex-wrap: wrap;
  }
}
.bo__user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  white-space: nowrap;
}
.bo__user a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  padding: 0.4rem;
  border-radius: 8px;
}
.bo__user a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.bo__page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0 1rem;
}
.bo__page-head p {
  margin: 0.15rem 0 0;
  color: #57606f;
  font-size: 0.9rem;
}
.bo__page-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.bo__main {
  padding-bottom: 3rem;
}
.bo__panel {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.bo__panel--muted {
  background: #eef1f7;
  box-shadow: none;
  padding: 1rem;
  margin-bottom: 1rem;
}
.bo__panel--muted:last-of-type {
  margin-bottom: 0;
}
.bo__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.bo__panel-head h2,
.bo__panel-head h3 {
  margin: 0;
}
.bo__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.bo__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.bo__field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #57606f;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.bo__field--grow {
  flex: 1 1 220px;
}
.bo__check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.25rem;
  align-self: flex-end;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1c2430;
  cursor: pointer;
  user-select: none;
}
.bo__check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e7b203;
  cursor: pointer;
}
.bo__input, .bo__select, .bo__textarea {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: #1c2430;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bo__input:hover, .bo__select:hover, .bo__textarea:hover {
  border-color: rgb(68.6274509804%, 73.5294117647%, 81.3725490196%);
}
.bo__input:focus, .bo__select:focus, .bo__textarea:focus {
  outline: none;
  border-color: #011a61;
  box-shadow: 0 0 0 3px rgba(1, 26, 97, 0.12);
}
.bo__input::placeholder, .bo__select::placeholder, .bo__textarea::placeholder {
  color: #9aa4b2;
}
.bo__textarea {
  min-height: 6rem;
  resize: vertical;
}
.bo__input--sm {
  width: 4rem;
  text-align: center;
  flex: 0 0 auto;
}
.bo__form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.bo__hint {
  font-size: 0.78rem;
  color: #57606f;
  margin-top: 0.25rem;
}
.bo__error-text {
  font-size: 0.78rem;
  color: #b42318;
  margin-top: 0.25rem;
}
.bo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
  line-height: 1;
}
.bo__btn:hover {
  transform: translateY(-1px);
}
.bo__btn:active {
  transform: translateY(0) scale(0.98);
}
.bo__btn.bo__btn--primary {
  background: rgb(231, 178, 3);
  color: #24160a;
  box-shadow: 0 4px 12px rgba(231, 178, 3, 0.35);
}
.bo__btn.bo__btn--primary:hover {
  background: #f2c326;
}
.bo__btn.bo__btn--secondary {
  background: #ffffff;
  border-color: #dfe4ec;
  color: #011a61;
}
.bo__btn.bo__btn--secondary:hover {
  background: #eef1f7;
}
.bo__btn.bo__btn--danger {
  background: #fdecea;
  color: #b42318;
}
.bo__btn.bo__btn--danger:hover {
  background: rgb(98.3461210571%, 84.2881500426%, 82.6342710997%);
}
.bo__btn.bo__btn--ghost {
  background: transparent;
  color: #011a61;
}
.bo__btn.bo__btn--ghost:hover {
  background: #eef1f7;
}
.bo__btn.bo__btn--sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
}
.bo__btn.bo__btn--icon {
  padding: 0.45rem;
  border-radius: 999px;
  width: 2.1rem;
  height: 2.1rem;
}
.bo__btn[disabled], .bo__btn.bo__btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.bo__table-scroll {
  overflow-x: auto;
  border-radius: 12px;
}
.bo__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.bo__table th,
.bo__table td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #dfe4ec;
  white-space: nowrap;
}
.bo__table th {
  color: #57606f;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  background: #eef1f7;
}
.bo__table tbody tr:hover {
  background: #eef1f7;
}
.bo__table td.bo__table-wrap {
  white-space: normal;
}
.bo__table-thumb {
  display: block;
  width: 140px;
  aspect-ratio: 16/9;
  object-fit: contain;
  border-radius: 8px;
  background: #eef1f7;
  cursor: pointer;
}
.bo__table-thumb--sm {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #dfe4ec;
  background: #eef1f7;
  cursor: default;
}
.bo__table-file {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eef1f7;
  color: #b42318;
  font-size: 1.15rem;
}
.bo__table-muted {
  color: #57606f;
}
.bo__table-empty {
  text-align: center;
  color: #57606f;
  padding: 2rem 0 !important;
}
.bo tr.is-archived td {
  opacity: 0.55;
}
.bo__is-us {
  color: #055505;
  font-weight: 700;
}
.bo__team-us {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.bo__team-us img {
  height: 16px;
  width: auto;
  flex: none;
}
.bo__table-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #57606f;
  margin-top: 0.15rem;
  white-space: nowrap;
}
.bo__table-actions {
  display: flex;
  gap: 0.35rem;
  justify-content: flex-end;
}
.bo__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bo__list-item {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
  padding: 1rem;
}
.bo__stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.bo__stepper-value {
  min-width: 2.75rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #011a61;
}
.bo__match-head {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dfe4ec;
}
.bo__match-head h3 {
  font-size: 1.05rem;
  color: #011a61;
}
.bo__match-head span {
  font-size: 0.8rem;
  color: #57606f;
}
.bo__match-leg + .bo__match-leg {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #dfe4ec;
}
.bo__match-leg-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #57606f;
  margin-bottom: 0.5rem;
}
.bo__match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}
.bo__match-teams span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 0;
  min-width: 0;
}
.bo__match-teams span img {
  height: 18px;
  width: auto;
  flex: none;
}
.bo__match-teams span:last-child {
  justify-content: flex-end;
  text-align: right;
}
.bo__match-team--us {
  color: #055505;
  font-weight: 700;
}
.bo__match-scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.bo__match-score-input {
  width: 3.4rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.5rem 0.25rem;
}
.bo__match-score-sep {
  font-weight: 700;
  color: #57606f;
}
.bo__match-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.bo__match-actions .bo__btn {
  flex: 1 1 auto;
}
.bo__match-feedback {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.bo__match-feedback.is-visible {
  opacity: 1;
}
.bo__match-feedback.is-success {
  color: #1a7f37;
}
.bo__match-feedback.is-error {
  color: #b42318;
}
.bo__dropdown {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0.25rem;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
  max-height: 220px;
  overflow-y: auto;
}
.bo__dropdown-item {
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #1c2430;
}
.bo__dropdown-item:hover {
  background: #eef1f7;
  color: #011a61;
}
.bo__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #57606f;
  background: #eef1f7;
  white-space: nowrap;
}
.bo__badge.bo__badge--success {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a7f37;
  background: #e6f4ea;
  white-space: nowrap;
}
.bo__badge.bo__badge--danger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #b42318;
  background: #fdecea;
  white-space: nowrap;
}
.bo__badge.bo__badge--warning {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #92610a;
  background: #fdf3e0;
  white-space: nowrap;
}
.bo__badge.bo__badge--info {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #011a61;
  background: #e7ecfa;
  white-space: nowrap;
}
.bo__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid #dfe4ec;
  background: #eef1f7;
  color: #1c2430;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.bo__alert.bo__alert--success {
  background: #e6f4ea;
  border-color: rgba(26, 127, 55, 0.25);
  color: #1a7f37;
}
.bo__alert.bo__alert--danger {
  background: #fdecea;
  border-color: rgba(180, 35, 24, 0.25);
  color: #b42318;
}
.bo__alert.bo__alert--warning {
  background: #fdf3e0;
  border-color: rgba(146, 97, 10, 0.25);
  color: #92610a;
}
.bo__empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #57606f;
}
.bo__empty i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.bo__skeleton-row {
  height: 2.4rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef1f7 25%, #e2e7f0 37%, #eef1f7 63%);
  background-size: 400% 100%;
  animation: bo-shimmer 1.4s ease infinite;
  margin-bottom: 0.5rem;
}
@keyframes bo-shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.bo__modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.bo__modal.is-open {
  display: flex;
}
.bo__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.55);
}
.bo__modal-panel {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.3);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
}
.bo__modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: none;
  background: #eef1f7;
  color: #1c2430;
  font-size: 1rem;
  cursor: pointer;
}
.bo__modal-close:hover {
  background: rgb(86.5333333333%, 88.9098039216%, 93.662745098%);
}
.bo__modal-title {
  margin-bottom: 1rem;
  padding-right: 2rem;
}
.bo__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #dfe4ec;
}
.bo__modal-actions .bo__btn {
  width: auto;
}
.bo__compat-modal {
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.3);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1c2430;
}
.bo__compat-modal .modal-header {
  align-items: center;
  border-bottom: 1px solid #dfe4ec;
  padding: 1.1rem 1.25rem;
}
.bo__compat-modal .modal-title {
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  color: #011a61;
}
.bo__compat-modal .modal-body {
  padding: 1.25rem;
}
.bo__compat-modal .modal-footer {
  border-top: 1px solid #dfe4ec;
  padding: 1rem 1.25rem;
}
.bo__compat-modal .bo__modal-close {
  position: static;
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
}
.bo__compat-modal-confirm {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  padding: 1.5rem 1.25rem;
}
.bo__compat-modal-confirm .bo__btn {
  min-width: 90px;
}
.bo__auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(circle at 15% -10%, rgba(231, 178, 3, 0.12), transparent 45%), radial-gradient(circle at 100% 110%, rgba(5, 85, 5, 0.1), transparent 50%), #f5f7fb;
}
.bo__auth-card {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
}
.bo__auth-logo {
  text-align: center;
  margin-bottom: 1.25rem;
}
.bo__auth-logo img {
  height: 88px;
  width: auto;
}
.bo__auth-title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.bo__auth-title h1 {
  font-size: 1.35rem;
}
.bo__auth-title p {
  margin: 0.3rem 0 0;
  color: #57606f;
  font-size: 0.85rem;
}
.bo__auth-field {
  margin-bottom: 1rem;
}
.bo__auth-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.bo__auth-actions .bo__btn {
  width: 100%;
}
.bo__auth-back {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
}
.bo__auth-back a {
  color: #57606f;
  text-decoration: none;
}
.bo__auth-back a:hover {
  color: #011a61;
  text-decoration: underline;
}
.bo__menu-preview {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.bo__menu-preview ul {
  list-style: none;
  margin: 0.35rem 0 0.25rem 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bo__menu-preview .is-disabled {
  opacity: 0.55;
}
.bo__menu-preview--cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.35rem 1.25rem;
}
.bo__menu-preview-label {
  font-weight: 600;
  color: #011a61;
}
.bo__cal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.bo__cal-nav {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
.bo__cal-select {
  min-width: 200px;
}
.bo__cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bo__cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #57606f;
}
.bo__cal-legend-item::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 4px;
  background: var(--bo-cal-swatch);
  border: 1px solid rgba(16, 24, 40, 0.15);
}
.bo__cal-legend-item--event-basket {
  --bo-cal-swatch: #ff4500;
}
.bo__cal-legend-item--event-volley {
  --bo-cal-swatch: #011a61;
}
.bo__cal-legend-item--event-other {
  --bo-cal-swatch: #055505;
}
.bo__cal-grid-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #dfe4ec;
}
.bo__cal-grid {
  border-collapse: collapse;
  table-layout: fixed;
  width: 1250px;
  font-size: 0.72rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.bo__cal-grid td {
  border: 1px solid #dfe4ec;
  padding: 0;
  text-align: center;
}
.bo__cal-col-label {
  width: 110px;
}
.bo__cal-col-quarter {
  width: 20px;
}
.bo__cal-hour {
  color: #1c2430;
  font-weight: 700;
  padding: 0.35rem 0.3rem !important;
  white-space: nowrap;
}
.bo__cal-hour-a {
  background: #e7ecfa;
}
.bo__cal-hour-b {
  background: rgb(74.0365111562%, 79.445571332%, 94.5909398242%);
}
.bo td.bo__cal-day.bo__cal-hour-b {
  filter: brightness(0.9);
}
.bo__cal-daylabel {
  text-align: right !important;
  font-weight: 600;
  color: #1c2430;
  white-space: nowrap;
  padding: 0.3rem 0.6rem !important;
}
.bo__cal-day--weekend-a {
  background: #00ff7f;
}
.bo__cal-day--weekend-b {
  background: #ffd700;
}
.bo__cal-day--weekday {
  background: #eef1f7;
}
.bo__cal-event {
  font-weight: 700;
  color: #fff;
}
.bo__cal-event--basket {
  background: #ff4500;
}
.bo__cal-event--volley {
  background: #011a61;
}
.bo__cal-event--other {
  background: #055505;
}
.bo__cal-slot {
  display: block;
  width: 100%;
  min-height: 1.6rem;
  padding: 0.3rem 0.4rem;
  cursor: pointer;
  white-space: normal;
  word-break: break-word;
}
.bo__cal-event .bo__cal-slot {
  cursor: grab;
  touch-action: none;
}
.bo__cal-event.is-dragging {
  position: relative;
  z-index: 5;
  cursor: grabbing;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
  opacity: 0.92;
}
.bo__cal-event.is-dragging .bo__cal-slot {
  cursor: grabbing;
}
.bo__cal-toast {
  margin-bottom: 1rem;
}
.bo__cal-drag-time {
  position: fixed;
  display: none;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #333333;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  z-index: 70;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
}
.bo__cal-drag-time.is-visible {
  display: block;
}
.bo__cal-ctxmenu {
  position: fixed;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 160px;
  padding: 0.35rem;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
  z-index: 60;
}
.bo__cal-ctxmenu.is-open {
  display: flex;
}
.bo__cal-ctxmenu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 0;
  background: transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1c2430;
  text-align: left;
  cursor: pointer;
}
.bo__cal-ctxmenu-item:hover, .bo__cal-ctxmenu-item:focus-visible {
  background: #eef1f7;
}
.bo__cal-ctxmenu-item--danger {
  color: #b42318;
}
@media (prefers-reduced-motion: reduce) {
  .bo * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

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