/* 全局字体调整 */
body {
    font-family: "Microsoft YaHei", sans-serif;
}

/* 关键按钮背景色改为活力橙 */
.btn-primary, .save-config, .submit-btn {
    background-color: #ff5722 !important; /* 活力橙 */
    border-color: #ff5722 !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #f4511e !important;
}

/* 左侧菜单高亮色修改 */
.sidebar .active, .sidebar li:hover {
    background-color: #ff5722 !important;
    color: white !important;
}

/* 输入框聚焦时的边框颜色 */
input:focus, textarea:focus {
    border-color: #ff5722 !important;
    box-shadow: 0 0 5px rgba(255, 87, 34, 0.3) !important;
}

/* 链接颜色 */
a {
    color: #ff5722 !important;
}