.tts-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tts-text {
  font-size: 16px;
  line-height: 1.6;
}

.tts-actions {
  display: flex;
  gap: 12px;
}

.table-container {
  overflow-x: auto;
}

.holiday-table {
  width: 100%;
  border-collapse: collapse;
}

.holiday-table th, .holiday-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: left;
}

.holiday-table thead th {
  font-weight: 600;
  color: #374151;
}

.holiday-table tbody tr:hover {
  background: rgba(127, 127, 255, 0.06);
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.badge-holiday {
  background: rgba(16,185,129,0.12);
  color: #047857;
}

.container {
  padding: 0;
}

.badge-paid {
  background: rgba(59,130,246,0.12);
  color: #1d4ed8;
}

.badge-work {
  background: rgba(245,158,11,0.14);
  color: #92400e;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* 左右布局：标签在左，控件在右 */
.form-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-label {
  margin: 0;
  min-width: 60px;
  color: #374151;
}

.description-list {
  list-style-type: none;
  margin-top: 8px;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #374151;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.button-container {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) { 
  .container {
    padding: 12px;
  }
}