:root {
    --sidebar-bg-color: #ffffff;
    --sidebar-title-size: 20px;
    --sidebar-title-color: #111111;
    --sidebar-text-size: 16px;
    --sidebar-text-color: #111111;
    --sidebar-text-border: 8px;
    --sidebar-text-color-active: #004bff;
    --sidebar-text-bg-color-active: #e7f3ff;
    --sidebar-text-color-hover: #004bff;
    --sidebar-text-bg-color-hover: #e7f3ff;
}

#webapp-sidebar {
    background-color: var(--sidebar-bg-color) !important;
}
#webapp-sidebar .pushy-header {
    margin: 20px;
    text-align: center;
}
#webapp-sidebar .pushy-header-image {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 4px solid #eee;
    margin-bottom: 10px;
}
#webapp-sidebar .pushy-header-title {
    color:var(--sidebar-title-color);
    font-size: var(--sidebar-title-size);
    font-weight: 700;
}
#webapp-sidebar .pushy-content {
    padding: 20px;
}
#webapp-sidebar .pushy-content ul {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
}
#webapp-sidebar .pushy-content ul li {
    font-size: var(--sidebar-text-size);
    padding-bottom: 4px;
}
#webapp-sidebar .pushy-content ul li a {
    font-size: var(--sidebar-text-size);
    font-weight: 400;
    text-decoration: none;
    color: var(--sidebar-text-color);
    font-family: inherit;
    line-height: 1;
}
#webapp-sidebar .pushy-content ul li a:hover {
    color: var(--sidebar-text-color-hover);
    background-color: var(--sidebar-text-bg-color-hover) !important;
    border-radius: var(--sidebar-text-border);
}
#webapp-sidebar .pushy-content ul li a.active {
    color: var(--sidebar-text-color-active);
    background-color: var(--sidebar-text-bg-color-active);
    border-radius: var(--sidebar-text-border);
}