/*
Theme Name: Estimate Calculator
Theme URI: https://example.com
Author: Crowdii
Author URI: https://example.com
Description: 综合报价模拟工具主题，用于实现 SNS 代运营等服务的在线概算报价。
Version: 0.1.0
Text Domain: estimate-calculator
*/

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header,
footer {
  flex-shrink: 0;
}

main.site-main {
  flex: 1 0 auto;
}

.text-xxs {
  font-size: 0.625rem;
}

.custom-logo-link {
  height: 40px;
  width: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}

.custom-logo {
  height: 100%;
  width: auto;
}

/* 共通：选项块样式（前台） */
.ec-option {
  border: 1px solid #e5e7eb; /* gray-200 */
  border-radius: 0.5rem; /* rounded-xl 近似 */
  padding: 0.75rem;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.ec-option-selected {
  border-color: #2563eb; /* blue-600 */
  background-color: #eff6ff; /* blue-50 */
}

/* 语言切换激活状态 */
.ec-lang-toggle-active {
  background-color: #111827; /* gray-900 */
  color: #ffffff;
  border-color: #111827;
}

/* 明细行分隔线（最后一行不显示） */
#ec-line-items > div:not(:last-child),
#ec-detail-line-items > div:not(:last-child) {
  border-bottom: 1px dashed #e5e7eb; /* gray-200 */
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

