/* static/css/calendar.css */


td.past-day {
    background-color: #edeff3; /* light gray */
    color: #6b7280;
  }

  td.future-no-ops {
    background-color: #f9fafb; /* slightly lighter gray */
    color: #4b5563;
  }

  td.today {
    border: 2px solid #3b82f6; /* blue */
    font-weight: bold;
  }

  table.calendar {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.875rem; /* matches text-sm */
  }
