﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#wrapper {
    display: flex;
    transition: all 0.3s ease;
}

#sidebar-wrapper {
    width: 250px;
    transition: all 0.3s ease;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -250px;
}

.sidebar-item {
    transition: background-color 0.2s;
}

    .sidebar-item:hover {
        background-color: #495057 !important;
    }

.dropdown-menu.animate__animated {
    animation-duration: 0.3s;
}
