.calendar-section {
  padding: 140px 5% 80px;
  text-align: center;
}

.calendar-box {
  max-width: 720px;
  margin: 0 auto 60px;
  background: rgba(18, 27, 68, 0.6);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(245,136,34,0.2);
}

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

.calendar-header button {
  background: var(--accent);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 15px;
}

.day {
  padding: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  position: relative;
}

.today {
  border: 2px solid var(--accent);
}

.holiday {
  background: #e74c3c;
  color: #fff;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: none;
}

.day:hover .tooltip {
  display: block;
}

/* LISTA */
.holidays-list {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.country {
  margin-bottom: 25px;
}

.country h3 {
  color: var(--accent);
}

/* DNI TYGODNIA */
.day-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}

/* FIX MIESIĄCA */
.calendar-header h2 {
  font-size: 18px;
  white-space: nowrap;
}