frontend/src/assets/css/NavigationPane.css
.nav-pane {
width: 250px;
background-color: #252526;
height: 100%;
overflow-y: auto;
}
.nav-section {
margin-bottom: 1rem;
}
.section-header {
padding: 8px 16px;
background-color: #333333;
height: 55px; /* Increased to match search container + divider */
display: flex;
align-items: center;
box-sizing: border-box;
border-bottom: 1px solid #444; /* Added divider to match search container */
}
.section-title {
font-size: 12px;
font-weight: 500;
color: #858585;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.section-content {
padding: 8px 0;
}
.nav-item {
padding: 8px 16px;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
color: #cccccc;
}
.nav-item:hover {
background-color: #2a2d2e;
}
.nav-item.active {
background-color: #37373d;
color: #ffffff;
}
.nav-item i {
width: 16px;
text-align: center;
font-size: 14px;
}