/* 🌈 多巴胺四色主题 v3 - 粉蓝黄紫搭配 */

body {
  background-color: #FFF7FB;
  color: #4D4D4D;
  font-family: 'Poppins', 'Helvetica', 'Microsoft YaHei', sans-serif;
}

/* 主按钮 - 粉色 */
.btn-primary {
  background-color: #FF99C8;
  border-color: #FF99C8;
  color: white;
  border-radius: 12px;
  font-weight: bold;
}
.btn-primary:hover {
  background-color: #FF7AB2;
  border-color: #FF7AB2;
}

/* 次按钮 - 天空蓝 */
.btn-secondary {
  background-color: #A9DEF9;
  border-color: #A9DEF9;
  color: #4D4D4D;
  border-radius: 12px;
}
.btn-secondary:hover {
  background-color: #89CCF0;
  border-color: #89CCF0;
}

/* 输入框 - 淡紫背景 */
input.form-control,
textarea.form-control,
select.form-control {
  background-color: #F6EDFB;
  border: 1px solid #E4C1F9;
  border-radius: 10px;
  color: #333;
}
input.form-control:focus {
  border-color: #FF99C8;
  box-shadow: 0 0 10px rgba(255, 153, 200, 0.3);
}

/* 卡片样式 - 渐变粉黄 */
.card {
  background: linear-gradient(180deg, #FFF7FB, #FCF6BD);
  border-radius: 20px;
  border: 1px solid #FDE2F3;
  box-shadow: 0 5px 10px rgba(255, 153, 200, 0.1);
}

/* 表格条纹 - 淡蓝背景 */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #EAF6FB;
}

/* 标题使用淡紫色 */
h1, h2, h3, h4 {
  color: #E4C1F9;
}

/* 小标签/徽章 - 黄色 */
.badge, .label, .tag {
  background-color: #FCF6BD;
  color: #4D4D4D;
  font-weight: bold;
  border-radius: 8px;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FDE2F3;
}
::-webkit-scrollbar-thumb {
  background-color: #FF99C8;
  border-radius: 4px;
}

/* 多巴胺点缀圆点图标 */
.dot, .loader {
  background: linear-gradient(135deg, #FF99C8, #A9DEF9, #E4C1F9, #FCF6BD);
}

/* 容器圆角统一 */
.container, .panel, .content, .box {
  border-radius: 20px;
}
/* 🌼 顶部导航菜单变黄色 */
.navbar-nav .nav-link {
  color: #FCF6BD !important;
  font-weight: 600;
}

/* 鼠标悬停时微微变粉色 */
.navbar-nav .nav-link:hover {
  color: #FF99C8 !important;
  text-decoration: underline;
}

.welcome-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #ffc8dd;
  background-color: #fff0f5;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.user-section, .balance-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 48px;
  height: 48px;
}

.username {
  font-size: 20px;
  font-weight: bold;
  color: #d63384;
}

.rm {
  font-size: 20px;
  font-weight: bold;
  color: #e44d26;
}

.subtitle {
  font-size: 13px;
  color: #666;
}

<style>
  * {
    font-weight: bold !important;
  }
</style>