/* main.css - 全局样式 */

body {
  background-color: #f5f6fa;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #dee2e6;
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
  background: #e9ecef;
  padding: 8px 12px;
  border-radius: 4px;
  margin: 20px 0 12px 0;
}

.form-control-readonly {
  background-color: #f8f9fa;
  color: #6c757d;
  border: 1px solid #dee2e6;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
}

td.editable {
  cursor: pointer;
}
td.editable:hover {
  background-color: #fff3cd;
}
td.editable input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
}

#toast-container {
  position: fixed;
  top: 70px;
  right: 16px;
  z-index: 1100;
}

#undo-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  background: #343a40;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
