/* 品牌颜色变量覆盖 - 从 base.html 内联样式迁移 */
:root {
    --brand-primary: #0d6efd;
    --brand-secondary: #6c757d;
    --brand-accent: #dc3545;
    --brand-light: #f8f9fa;
    --brand-dark: #212529;
}

/* Base.html 内联样式迁移 - 覆盖 custom.css 中的样式 */

/* 导航栏品牌图片高度覆盖 */
.navbar-brand img {
    height: 40px;
    transition: opacity 0.3s ease;
}

.navbar-brand img:hover {
    opacity: 0.9;
}

/* 企业抬头图片样式覆盖 */
.navbar-brand .header-images img {
    height: 25px;
    transition: all 0.3s ease;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.2);
}

.navbar-brand .header-images img:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.4);
}

/* 通知徽章样式 (custom.css 中没有) */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7rem;
}

/* 下拉菜单徽章样式 (custom.css 中没有) */
.dropdown-menu .badge {
    margin-top: 0.2rem;
}