/* 导航栏专用样式 - 紫色主题 */

/* 导航栏渐变背景 */
.navbar-themed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    backdrop-filter: blur(10px);
}

/* 导航栏链接悬停效果 */
.navbar-themed .nav-link:hover {
    background: rgba(255,255,255,0.1) !important;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* 记事本按钮样式 */
.navbar-themed .btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* 下拉菜单增强 */
.navbar-themed .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 15px;
    margin-top: 0.5rem;
}

/* 用户头像样式 */
.navbar-themed .rounded-circle {
    transition: all 0.3s ease;
}

.navbar-themed .dropdown-toggle:hover .rounded-circle {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
} 