#batch-calendar {
    max-width: 400px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
}

.fc-header-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.fc-toolbar-title {
    font-size: 18px;
    font-weight: bold;
    color: #1FAFDB;
}

.fc-button {
    background: none;
    border: none;
    font-size: 20px;
    color: #1FAFDB;
    cursor: pointer;
}

.fc-button:hover {
    color: #007aa5;
}

.fc-daygrid-day {
    text-align: center;
    vertical-align: middle;
    border: none;
    padding: 5px;
}

.fc-daygrid-day-number {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.fc-daygrid-day.fc-day-today {
    border-radius: 0%;
    color: #fff;
}

.fc-day-past {
    color: #bbb;
}

.fc-event {
    display: block;
    font-size: 12px;
    color: white;
    border-radius: 0px;
    padding: 2px 5px;
    margin: 0px auto;
    text-align: center;
}

.fc-day-sun,
.fc-day-sat {
    color: #e74c3c;
}

.fc-button-prev,
.fc-button-next {
    font-weight: bold;
    font-size: 18px;
}

.fc-daygrid-event-harness {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* single betch page */

.fc-daygrid-day[data-date]:hover {
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

.featured-image {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional */
}

.mrg{
    margin-top: -100px;
    margin-bottom: -50px;
}

@media only screen and (max-width: 600px) {
    .mrg{
        margin-top: -40px;
        margin-bottom: 0px;
    }
  }