.sidebar-item.active {
    background-color: rgba(0, 181, 255, 0.3); 
}

html {
    font-size: 18px;
}


h1, h2, h3, h4, h5, h6 {
    font-size: inherit; 
}


.modal-height {
    max-height: 500px; 
    overflow-y: auto;
}

.highlighted-date {
    font-weight: bold;
    position: relative;
}

    .highlighted-date::after {
        content: "";
        width: 5px;
        height: 5px;
        background-color: red;
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }