/* Sidebar Container */
#sidebar {
    width: 260px;
    background: #3e5a3c;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    position: sticky;
    top: 100px;
}

/* Title */
#sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    border-left: 4px solid #ee8102; /* Orange highlight */
    padding-left: 10px;
}

/* Sidebar Links */
#sidebar a.item {
    display: block;
    padding: 12px 14px;
    margin-bottom: 6px;
    font-size: 15px;
    color: #3e5a3c;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #dcdcdc;
    transition: 0.3s;
    font-weight: 500;
}

/* Hover Effect */
#sidebar a.item:hover {
    background: #ee8102; /* Orange */
    color: #ffffff;
    transform: translateX(6px);
}

/* Active Link */
#sidebar a.active {
    background: #3e5a3c; /* Green */
    color: #ffffff !important;
    font-weight: 700;
    border: 1px solid #ee8102; /* Orange outline */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
}
