.fi-sidebar-nav{
    height: 500px!important;
}
/* Ensure the dropdown and options have a smooth border-radius */
html.dark .fi-select-input {
    border-radius: 8px !important; /* Adjust as needed */
}

/* Style the dropdown options */
html.dark select,
html.dark .fi-select-input,
html.dark .fi-select-input option {
    border-radius: 8px !important; /* Ensures rounded corners */
    background-color: #1e293b !important; /* Dark background */
    color: white !important;
}

/* Ensure first and last options are rounded */
html.dark .fi-select-input option:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

html.dark .fi-select-input option:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
