.buksy-calendar {
  border-top: 1px solid #eee;
  margin-top: 10px;
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.calendar-header h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.arrow {
  background: #ffed72;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 3px 8px;
  cursor: pointer;
  font-size: 14px;
}

.calendar-legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
  text-align: left;
  font-size: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-item .color {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}

.legend-item a {
  color: #0073aa;
  font-weight: 600;
  text-decoration: none;
}

.legend-item small {
  color: #666;
  font-weight: 400;
}

.calendar-grid { width: 100%; }

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.weekdays .wd {
  text-align: center;
  color: #aaa;
  font-size: 12px;
  line-height: 1.2;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
