@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
.sidebar-wrapper {
background: #fff;
border: 1px solid #eff0f6;
border-radius: 5px;
font-family: 'Inter', sans-serif;
max-width: 100%;
}
.sidebar-heading {
padding: 10px;
text-align: center;
font-size: 20px;
margin: 0;
color: #333;
font-weight: 600;
border-bottom: 1px solid #eff0f6;
background: #f5f5f5;
}
.sidebar-list {
list-style-type: none;
padding-left: 0;
padding-bottom: 10px;
margin: 0;
}
.sidebar-item {
font-size: 14px;
margin: 0;
padding: 10px;
border-bottom: 1px solid #eff0f6;
transition: background 0.3s ease;
}
.sidebar-item:last-child {
border-bottom: none;
}
.sidebar-content {
flex-grow: 1;
}
.sidebar-link {
text-decoration: none;
color: #444444;
transition: color 0.3s ease;
font-size: 16px;
font-weight: 400;
display: block;
margin: 5px 0;
}
.sidebar-link:hover {
color: #347acf;
}
@media screen and (max-width: 768px) {
.sidebar-item {
padding: 8px;
}
.sidebar-link {
font-size: 16px;
}
}