html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-header {
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: #6c757d;
}

.calendar-day {
    min-height: 72px;
    padding: 0.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .calendar-day:hover {
        transform: translateY(-1px);
        text-decoration: none;
    }

.calendar-date {
    font-weight: 700;
}

.calendar-score {
    font-size: 0.9rem;
}

.calendar-good {
    background: #d1e7dd;
}

.calendar-ok {
    background: #fff3cd;
}

.calendar-bad {
    background: #f8d7da;
}

.calendar-empty {
    background: #f8f9fa;
}

.calendar-muted {
    opacity: 0.35;
}