/* Admin table */
.cc-tfd-table input, .cc-tfd-table select { width: 100%; }

/* Frontend styles */
.cc-tfd-wrap { margin: 24px 0; }
.cc-tfd-title { font-size: 22px; font-weight: 700; margin: 0 0 10px; }
.cc-tfd-table .cc-tfd-row-outer {
  background: #fff; border-radius: 12px; margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.cc-tfd-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 14px;
  padding: 16px 18px; align-items: center;
}
.cc-tfd-col { display: flex; flex-direction: column; }
.cc-tfd-label { font-size: 12px; color: #7c8a8c; }
.cc-tfd-start strong, .cc-tfd-end strong { font-size: 16px; }
.cc-tfd-price-amount { font-weight: 700; font-size: 16px; }
.cc-tfd-small { color: #6b7b7d; font-size: 13px; }
.cc-tfd-btn {
  appearance: none; border: none; cursor: pointer;
  padding: 10px 18px; border-radius: 28px; font-weight: 600;
  transition: .2s;
}
.cc-tfd-book { background: #5fa440; color: #fff; box-shadow: 0 8px 16px rgba(95,164,64,.25); }
.cc-tfd-book:hover { background: #4c8b34; }
.cc-tfd-sold {
  background: #f2f2f2; color: #b33939; border: 1px solid #f0d3d3; cursor: not-allowed;
}
@media (max-width: 900px){ .cc-tfd-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .cc-tfd-row { grid-template-columns: 1fr; } .cc-tfd-col { margin-bottom: 6px; } }
