/* ===== KALENDARZ ===== */

.calendar-box {
    background: linear-gradient(180deg, #fff, #faf8f4);
    border: 1px solid #ddd7cf;
    border-radius: 16px;
    padding: 18px;
    margin-top: 20px;
  }
  
  .calendar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 700;
  }
  
  .calendar-month {
    font-size: 1rem;
  }
  
  .calendar-badge {
    font-size: 0.86rem;
    color: #6e6a63;
    border: 1px solid #ddd7cf;
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff;
  }
  
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
  }
  
  .calendar-day,
  .calendar-date {
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 0.9rem;
  }
  
  .calendar-day {
    font-weight: bold;
    background: #f5f2ec;
    color: #6e6a63;
  }
  
  .calendar-date {
    background: #fff;
    border: 1px solid #eee;
    color: #444;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .calendar-date:hover {
    background: #f2eee7;
  }
  
  .calendar-date.muted {
    opacity: 0.4;
  }
  
  .calendar-date.soon {
    font-weight: bold;
    background: #f8f4ee;
    border-color: #d7cfc2;
  }