.sidebar-wrapper {
    display: flex;
    width: 300px;
    max-width: 300px;
    min-width: 300px;
    flex-direction: column;
    gap: 20px;
}

.sidebar-list-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow:  0 0 5px rgba(0,0,0,0.3);
}

.sidebar-list-item-title {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    color: white;
    font-weight: bold;
    background-color: #f60000;
    text-align: center;
}

.sidebar-list-item {
    display: flex;
    font-size: 14px;
    width: 100%;
    padding: 15px;
    cursor: pointer;
}

.sidebar-list-item.active {
    border-left: 5px solid #1e2148;
    background-color: #e9eaf5;
}

.sidebar-list-wrapper > *:not(:first-child):not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.sidebar-list-item-title.bg-blue {
    background-color: #1e2148;
}

.sidebar-list-item:hover {
    background-color: #e9eaf5;
}

.sidebar-ad-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}