/* Dashboard Sidebar Styles */
.sidebar-menu {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}

.sidebar-menu .nav-link {
    color: #5a5a5a;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.sidebar-menu .nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-menu .nav-link:hover {
    background-color: #f1f1f1;
    color: #4154f1;
}

.sidebar-menu .nav-link.active {
    background-color: #4154f1;
    color: white;
}

.sidebar-menu .nav-link.active i {
    color: white;
}

/* User profile styles */
.profile-header {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.profile-header .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.profile-tabs .nav-link {
    color: #5a5a5a;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
}

.profile-tabs .nav-link.active {
    background-color: #4154f1;
    color: white;
    border-color: #4154f1;
}

.form-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
} 