/* Previous CSS + */
.fmc-events-list {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.fmc-day {
  height: 120px;
  width: 200px;

}
.fmc-events-list th, .fmc-events-list td {
    border: 1px solid #ddd;
    padding: 8px;
}
.fmc-event-link {
    color: #000000;
    text-decoration: none;
}
.fmc-event-link:hover {
    text-decoration: underline;
}

.fmc-month-selector {
    margin-bottom: 20px;
}
.fmc-month-selector select {
    padding: 5px;
    font-size: 16px;
}

.fmc-month-year-selector {
    margin-bottom: 20px;
}
.fmc-month-year-selector select {
    padding: 5px;
    font-size: 16px;
    width: 200px; /* Adjustable width */
}

.fmc-events a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 0.9em;
    padding: 2px;
    background-color: #f9f9f9;
    border-radius: 3px;
    position: relative; /* Ensure proper positioning context */
}
.fmc-events a:hover {
    text-decoration: underline;
}
.has-event {
    background-color: #e8f0fe;
}
#month-year-select option {
    background-color: #000000; /* Option background */
    color: white; /* Option text color */

}