.month-selector {
    background-color: #e4e4e4;
    border-radius: 4px;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.month-selector:hover {
    background-color: #d6d6d6;
}

#calendar h2 {
    padding: 0 20px;
    margin: 20px 0;
}

#calendar h2 span {
    color: #FFD555;
}

.date {
    margin-bottom: 20px;
}

.date-header {
    height: 50px;
    background-color: #011a42;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.yesterday .date-header {
    background-color: #e0e0e0;
    color: #2d2d2d;
}

.today .date-header {
    background-color: #00245d;
}

.no-items {
    color: #cbcbcb;
    font-weight: bold;
    text-transform: uppercase;
    font-style: italic;
    font-size: 14px;
    text-align: center;
}

.event-text {
    /* padding: 10px; */

    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    /* font-style: italic; */
    font-size: 14px;
    text-align: center;
    /* padding: 1rem 1rem 0 1rem; */
    display: flex;
    /* Enables Flexbox */
    justify-content: center;
    /* Horizontally centers content */
    align-items: center;
    /* Vertically centers content */
    text-decoration: none;
    /* Preserves the original class functionality */
    height: 100%;
    /* Ensures the box has a defined height */
    width: 100%;
    /* Ensures the box has a defined width (if needed) */
}

.date-item {
    /* margin-top: 10px; */
    height: 100px;
    /* Define a consistent height */
    font-size: 14px;
    /* Control font size */
    text-align: center;
    /* Center text horizontally */
    cursor: pointer;
    background-color: #f3cb23;
    /* Add background color */
    border: 1px solid #00245d;
    /* Border for visibility */
    display: flex;
    /* Use Flexbox for alignment */
    flex-direction: column;
    /* Arrange content vertically */
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
    overflow: hidden;
    /* Prevent content overflow */
    word-wrap: break-word;
    /* Break long words */
}

.popover {
    background-color: #00245d !important;
    /* Set background color */
    color: #ffffff !important;
    /* Set font color */
    border: 2px solid #f3cb23 !important;
    border-radius: 10px;
    /* Set border */
}

.popover .popover-body {
    color: #ffffff !important;
    /* Body text color */
    background-color: #00245d important;
    /* Body background */
}

@media (min-width: 1220px) {
    .col-calendar {
        flex: 0 0 14.2857%;
        /* 6 items per row */
        max-width: 14.2857%;
    }

}

@media (min-width: 992px) and (max-width: 1219px) {
    .col-calendar {
        flex: 0 0 20%;
        /* 5 items per row */
        max-width: 20%;
    }
}

@media (max-width: 991px) {
    .col-calendar {
        flex: 0 0 25%;
        /* 4 items per row */
        max-width: 25%;
    }

    .no-event {
        display: none;
    }
}

@media (max-width: 768px) {
    .col-calendar {
        flex: 0 0 33.3333%;
        /* 3 items per row */
        max-width: 33.3333%;
    }

    .no-event {
        display: none;
    }
}

@media (max-width: 576px) {
    .col-calendar {
        flex: 0 0 100%;
        /* 2 items per row */
        max-width: 100%;
    }

    .date-header {
        font-size: 20px;
    }

    .event-text {
        font-size: 16px;
    }

    .no-event {
        display: none;
    }
}

.pricing-event {
    text-decoration: underline;
    cursor: pointer;
}