.bg-sidebar {
    background-image: url("../images/dashboard/bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.my-input {
    background-color: rgba(249, 251, 249, 0.904);
    color: rgb(22, 22, 22);
    border-color: #8d9197;
    font-size: medium;
}
.my-input::placeholder {
    color: #717274a8; /* Contoh warna biru */
}
.sidebar .nav .nav-item:hover .menu-title {
    color: #0050e3; /* Warna teks biru */
    font-weight: bolder;
}
.sidebar .nav .nav-item .menu-title {
    font-size: larger;
}
.sidebar .nav .nav-item:hover .nav-link i.menu-icon {
    color: #0050e3;
}
.bg-orange {
    background-color: orange;
}
.bg-header {
    background-color: rgba(167, 167, 166, 0.711);
}
.responsive-style {
        width: 100%; /* Default untuk layar kecil */
    }

    @media (min-width: 1024px) {
        .responsive-style {
            max-width: 50%;
        }
}