/* Basic page styling */
body {
    margin: 40px 10px;
    font: 14px Arial, sans-serif;
  }
  
  #calendar {
    max-width: 900px;
    margin: 0 auto;
  }

  body {
    font-family: Arial, sans-serif;
  }
  
  #calendar-container {
    width: 220px;
    margin: 20px auto;
    text-align: center;
  }
  
  #calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  #calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
  }
  
  .day {
    width: 28px;
    height: 28px;
    line-height: 28px;
    background-color: #eee;
    border-radius: 50%;
    font-size: 0.8em;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .day:hover {
    background-color: #b7004b;
    color: white;
  }
  
  
  
  .blank {
    background: none;
    cursor: default;
  }
  

  .day.selected {
    background-color: #ab006a;
    color: white;
    border-radius: 50%;
  }
  
  .day.today {
    font-weight: bold; /* Optional: visually distinguish today */
  }