/******************************************************************************/
/* EVENT CALENDAR */
/******************************************************************************/
.calendar-day.no-class-day {
    background-color: #d3d3d3; /* light gray */
    color: #555;
    cursor: default;
}

.calendar-day.no-class-day:hover {
    background-color: #c0c0c0;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.event-actions {
    display: flex;
    gap: 8px;
}

.event-actions button {
    height: 32px;
}

.calendar-container .event-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    line-height: 1;
    box-sizing: border-box;
}

.calendar-container #eventDetails > button,
.calendar-container #eventDetails .event-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 15px;
    line-height: 1;
}

/* Hover color for event dates (flat) */
.calendar-day.event-day:hover {
    background-color: #9E8017 !important;
    color: #000 !important;
    border-radius: 0;
}

/* Selected date stays gold, overrides hover and default colors */
.calendar-day.selected {
    background-color: #9E8017 !important;
    color: #000 !important;
    border-radius: 0;
}

/******************************************************************************/
/* CALENDAR */
/******************************************************************************/

        .calendar-container {
            max-width: 800px;
            margin: auto;
        }
        .calendar-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .calendar-table {
            width: 100%;
            border-collapse: collapse;
        }
        .calendar-table th, .calendar-table td {
            border: 1px solid #ccc;
            padding: 10px;
            text-align: center;
        }
       .event-day {
    background-color: #9ca1b3 !important;
    color: #fff !important;
}
.calendar-day {
    cursor: pointer;
}
        .calendar-day:hover {
            background-color: #f0f8ff;
        }
       
        .calendar-actions {
            margin-top: 10px;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: white;
            padding: 1em;
            border-radius: 4px;
            width: 300px;
        }
        .modal-buttons button {
            margin: 5px;
        }
        @media (max-width: 600px) {
            .calendar-table th, .calendar-table td {
                padding: 5px;
            }
        }

 .search-btn {
  width: 100px;
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  border-radius: 6px; /* Rounded corners */
  background-color: #132153;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background-color: #9E8017;
  color: #132153;
}