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;
}

.card-header {
    font-size: 1.1rem;
}

#wetterBox {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.forecast-day {
    flex: 1 1 150px;
    max-width: 160px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.forecast-day .date {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.forecast-day .weather-icon {
    width: 64px;
    height: 64px;
}

.forecast-day .desc {
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.forecast-day .temp {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

.forecast-day.sunny {
    background-color: #fff8dc;
    border: 1px solid #ffe08a;
}

.forecast-day.cloudy {
    background-color: #f0f0f0;
    border: 1px solid #dcdcdc;
}

.forecast-day.rainy {
    background-color: #e0f7fa;
    border: 1px solid #81d4fa;
}

.forecast-day.snowy {
    background-color: #f0faff;
    border: 1px solid #bbdefb;
}