.kbc-calendar {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
}

.kbc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: transparent;
}

.kbc-month {
  font-size: 17px;
  font-weight: 500;
  color: #48423e;
  letter-spacing: 0.06em;
}

.kbc-nav {
  color: #a0d582;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s;
}

.kbc-nav:hover {
  color: #5aa832;
}

.kbc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 10px;
  background: transparent;
}

.kbc-dow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 0;
  color: #6d6560;
  background: transparent;
}

.kbc-dow.kbc-sun { color: #c0392b; }
.kbc-dow.kbc-sat { color: #2980b9; }

.kbc-day {
  background: transparent;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 4px;
  position: relative;
}

.kbc-day.kbc-empty {
  background: transparent;
}

.kbc-day.kbc-closed {
  background: #fff0ee;
}

.kbc-day.kbc-today {
  outline: 2px solid #a0d582;
  outline-offset: -2px;
}

.kbc-day.kbc-today .kbc-num {
  color: #5aa832;
}

.kbc-day.kbc-sun .kbc-num { color: #c0392b; }
.kbc-day.kbc-sat .kbc-num { color: #2980b9; }

.kbc-num {
  font-size: 14px;
  font-weight: 700;
  color: #48423e;
  line-height: 1;
}

.kbc-rest {
  font-size: 10px;
  font-weight: 500;
  color: #e74c3c;
  line-height: 1;
}

.kbc-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #6d6560;
}

.kbc-legend-closed {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border-radius: 2px;
  flex-shrink: 0;
}
