input.search-pandu {
    width: 100%;
    padding: 9px 4px 9px 40px;
    background: transparent
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E")
        no-repeat 13px center;
}

.nav-item .nav-menu:hover {
    text-decoration: underline;
    font-weight: bold;
}

.modal-backdrop {
    z-index: 1051;
}

.blur-ulasan {
    backdrop-filter: blur(5px);
    filter: blur(5px);
}

.blur-text {
    backdrop-filter: blur(5px);
    filter: blur(5px);
}

.cover {
    object-fit: cover;
}

.dropdown-menu {
    width: 207px;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.sidebar {
    position: fixed;
    overflow-y: auto;
    height: 100vh;
    left: 0;
    width: 250px;
    background: white;
    z-index: 1;
    visibility: visible;
}

.sidebar.active {
    visibility: hidden;
}

.main-content {
    position: relative;
    left: 260px;
    width: calc(100% - 260px);
    padding: 1rem;
}

.sidebar.active ~ .main-content {
    left: 0px;
    width: 100%;
    padding: 1rem;
}

.wrapper {
    width: 400px;
    background: #fff;
    border: 2px solid lightgrey;
    border-radius: 10px;
}
.wrapper header {
    display: flex;
    align-items: center;
    padding: 0px 14px;
    justify-content: space-between;
}
header .icons {
    display: flex;
}
header .icons span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    color: #878787;
    text-align: center;
    line-height: 38px;
    user-select: none;
    border-radius: 50%;
}
.icons span:last-child {
    margin-right: -10px;
}
header .icons span:hover {
    background: #f2f2f2;
}
header .current-date {
    font-size: 1.2rem;
    font-weight: bold;
}
.calendar {
    padding: 20px;
}
.calendar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
}
.calendar .days {
    margin-bottom: 20px;
}
.calendar li {
    color: #333;
    width: calc(100% / 7);
}
.calendar .weeks li {
    font-weight: 500;
    cursor: default;
}
.calendar .days li {
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 30px;
}
.days li.inactive {
    color: #aaa;
}
.days li.active {
    color: #fff;
}
.days li::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.days li.active::before {
    background: #dc3545;
}
.days li:not(.active):hover::before {
    background: #f2f2f2;
}

@media (max-width: 1024px) {
    .sidebar {
        visibility: hidden;
    }

    .sidebar.active {
        visibility: visible;
    }

    .main-content {
        left: 0px;
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 900px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        width: fit-content;
        font-size: small;
    }
}
