/* 全局黑色背景 */
body {
  background-color: #0a0a0a !important;
  font-size: 16px !important;
  color: #f0f0f0 !important;
  line-height: 1.6 !important;
}

/* 卡片、弹窗、面板 */
.el-card, .el-dialog, .el-drawer, .el-container {
  background-color: #121212 !important;
  color: #f0f0f0 !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid #2a2a2a !important;
}

/* 输入框、文本域 */
.el-input__inner, .el-textarea__inner, .el-select-dropdown {
  background-color: #1a1a1a !important;
  color: #f0f0f0 !important;
  border-color: #333 !important;
}
.el-input__inner::placeholder, .el-textarea__inner::placeholder {
  color: #666 !important;
}

/* 表格 */
.el-table {
  background-color: transparent !important;
  color: #f0f0f0 !important;
  font-size: 15px !important;
}
.el-table th {
  background-color: #1a1a1a !important;
  color: #fff !important;
  border-bottom: 1px solid #333 !important;
}
.el-table tr {
  background-color: #121212 !important;
}
.el-table tr:hover {
  background-color: #1e1e1e !important;
}
.el-table td {
  border-bottom: 1px solid #2a2a2a !important;
}

/* 侧边栏 */
.el-aside {
  background-color: #000 !important;
  border-right: 1px solid #2a2a2a !important;
}
.el-menu {
  background-color: transparent !important;
  color: #ccc !important;
}
.el-menu-item, .el-submenu__title {
  background-color: transparent !important;
  color: #ccc !important;
}
.el-menu-item:hover, .el-menu-item.is-active {
  background-color: #1a1a1a !important;
  color: #fff !important;
  border-left: 3px solid #ff3333 !important;
}

/* 顶部导航 */
.el-header {
  background-color: #000 !important;
  border-bottom: 1px solid #2a2a2a !important;
  color: #fff !important;
}

/* 按钮高亮红色 */
.el-button--primary {
  background-color: #ff3333 !important;
  border-color: #ff3333 !important;
  color: #fff !important;
  border-radius: 6px !important;
}
.el-button--primary:hover {
  background-color: #ff5555 !important;
  border-color: #ff5555 !important;
}
.el-button--default {
  background-color: #1a1a1a !important;
  border-color: #333 !important;
  color: #f0f0f0 !important;
}
.el-button--default:hover {
  background-color: #2a2a2a !important;
}

/* 话术编辑区 */
.editor-container, .el-textarea__inner {
  min-height: 550px !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  background-color: #1a1a1a !important;
  color: #f0f0f0 !important;
}

/* 标签栏高亮 */
.el-tabs__active-bar {
  background-color: #ff3333 !important;
}
.el-tabs__item.is-active {
  color: #ff3333 !important;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}