/* 通用样式 - 所有页面共享 */
:root {
  --primary: #4a6cf7;
  --primary-dark: #3b5de7;
  --background: #ffffff;
  --surface: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow: 0 2px 10px rgba(0,0,0,0.05);
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background);
  margin: 0;
  padding: 0;
}

/* 导航栏 */
.navbar {
  background-color: #ffffff !important;
  padding: 0.75rem 0;
  box-shadow: var(--shadow);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

/* 页脚 */
footer {
  background-color: var(--surface) !important;
  color: var(--text-dark) !important;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #eaeaea;
}

footer.bg-dark {
  background-color: var(--surface) !important;
}

footer.text-white {
  color: var(--text-dark) !important;
}

footer a.text-muted {
  color: var(--text-light) !important;
}

footer a.text-muted:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

/* 按钮样式 */
.btn {
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
} 