
.calendar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .calendar-heading {
    color: white;
    font-size: 18px;
    text-align: center;
    margin: 0;
  }
  
  .pantau-btn {
    background-color: #9d681e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .pantau-btn:hover {
    background-color: #a97402;
  }
  
  .calendar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 163, 4, 0.2);
    text-align: center;
}

.calendar h2 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
}

.calendar select {
    padding: 5px;
    margin-bottom: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 40px);
    gap: 5px;
    justify-content: center;
}

.calendar-grid div {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #e0e0e0;
    font-size: 16px;
    font-weight: bold;
}

.calendar-grid .selected {
    background-color: #6f42c1;
    color: white;
}

.calendar-grid .today {
    background-color: #bb6b3a;
    color: white;
}