@charset "utf-8";
/* CSS Document */

        .calendar-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            color: #5c3b3b;
        }
        .calendar {
            border: 1px solid #ccc;
            border-radius: 5px;
            overflow: hidden;
            /*width: calc(50% - 20px);*/
            max-width: 240px;
            box-sizing: border-box;
        }
        .calendar-header {
            background-color: #99724b;
            color: white;
            text-align: center;
            padding: 7px 0;
        }
        .calendar-body {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background-color: #F0F0F0;
        }
        .calendar-day {
            background-color: white;
            padding: 7px;
            text-align: center;
        }
        .calendar-day.weekend,
        .calendar-day.holiday,
        .calendar-day.wednesday {
            background-color: #e6dedf;
            color: #5c3b3b;
        }
        .day-name {
            font-weight: bold;
            /*background-color: #f5f1ee;*/
            color: #5c3b3b;
        }

        @media (max-width: 768px) {
            .calendar {
                width: 100%;
                max-width: 100%;
            }
        }
.holiday-label {
  display: inline-block;
  padding: 4px 10px;
  color: #5c3b3b;
  background-color: #e6dedf;
  border: 1px solid #c9bcbc;
  border-radius: 2px;
  line-height: 1;
  white-space: nowrap;
}



