:root {
  --tblr-primary: #1f2937;
  --tblr-primary-rgb: 31, 41, 55;
}

.brand-logo {
  width: 48px;
  height: 48px;
  background: var(--tblr-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.brand-logo-sm {
  width: 32px;
  height: 32px;
  background: var(--tblr-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.login-body {
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.login-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
  box-sizing: border-box;
}

.login-brand {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.login-content {
  flex: 1;
  text-align: center;
  width: 100%;
}

.login-actions {
  padding-top: 1.5rem;
  padding-bottom: env(safe-area-inset-bottom, 0);
  text-align: center;
  width: 100%;
}

.login-actions .btn {
  display: block;
  width: 100%;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.progress-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tblr-border-color);
}

.progress-dots .dot.active {
  background: var(--tblr-primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tblr-primary);
  margin: 0 auto;
}

.status-icon {
  width: 80px;
  height: 80px;
  background: var(--status-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.status-icon svg {
  width: 40px;
  height: 40px;
  color: var(--status-color);
}

/* ClockBot logo shadow */
.clockbot-logo { filter: drop-shadow(2px 3px 0px rgba(0,0,0,0.5)) drop-shadow(0 0 6px rgba(255,255,255,0.15)); }

/* Sidebar brand spacing */
@media (min-width: 992px) {
  .navbar-vertical.navbar-expand-lg .navbar-brand { padding: 2rem 0; }
  .pt-lg-3 { padding-top: 0 !important; }
}

/* Schedule grid: clickable day cells */
.schedule-cell { cursor: pointer; min-width: 80px; transition: background-color 0.15s; }
.schedule-cell:hover { background-color: rgba(var(--tblr-primary-rgb), 0.12); }

/* Override Tabler's absolute positioning of badges inside nav links */
.navbar .navbar-nav .nav-link > .badge {
  position: static;
  transform: none;
}
