/* Sidebar Styles */
.sidebar-link {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.sidebar-link:hover {
    background-color: var(--bg-hover);
    transform: translateX(4px);
}

.nav-icon {
    width: 20px;
    text-align: center;
}

.sticky-sidebar {
    position: sticky;
    top: 36px;
    margin-top: 1rem;
    max-height: calc(100vh - 40px);
}

/* Footer links styles */
.footer-links {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-accent);
}

.footer-links a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}
