.btc-wrap { max-width: 900px; }
.btc-title { margin: 0 0 12px; }

.btc-toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
}
.btc-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.btc-btn--ghost { opacity: .8; }
.btc-range { flex: 1; font-size: 14px; opacity: .8; }
.btc-status { margin: 8px 0 16px; opacity: .8; }

.btc-day { padding: 14px 0; border-top: 1px solid #eee; }
.btc-day__title { margin: 0 0 10px; font-size: 16px; }

.btc-slots { display: grid; gap: 8px; }
.btc-slot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px 12px;
}
.btc-slot:hover { border-color: #ccc; }

.btc-slot__time { font-weight: 700; }
.btc-slot__place { font-size: 13px; opacity: .8; }
.btc-slot__right { font-weight: 600; white-space: nowrap; }

.btc-slot.is-full {
  opacity: .45;
  filter: grayscale(0.5);
  pointer-events: none;
}

.btc-wrap--compact .btc-slot { padding: 10px 12px; }
.btc-slot__date { margin-top: 2px; font-size: 12px; opacity: .75; }

/* =========================================
   MÅNADSFILTER: använd GRID (stabilt på mobil)
   ========================================= */
.btc-wrap--month .btc-month-filter {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  align-items: start !important;
  margin: 0 0 14px !important;
}

.btc-wrap--month .btc-month-filter__label {
  font-size: 14px;
  opacity: .8;
  white-space: nowrap;
}

.btc-wrap--month .btc-month-filter__select {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;

  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 10px;

  background: #fff;

  /* Hindra “klipp” i vissa teman */
  min-width: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Desktop: två filter på samma rad (label+select)(label+select) */
@media (min-width: 700px) {
  .btc-wrap--month .btc-month-filter {
    grid-template-columns: auto minmax(160px, 1fr) auto minmax(160px, 1fr) !important;
    align-items: center !important;
    gap: 10px 12px !important;
  }

  .btc-wrap--month .btc-month-filter__select {
    width: auto !important;
  }
}

/* Extra små mobiler: lite mindre padding */
@media (max-width: 360px) {
  .btc-wrap--month .btc-month-filter__select {
    padding: 9px 10px;
  }

  .btc-slot { padding: 10px; gap: 10px; }
  .btc-slot__right { font-size: 13px; }
}
