/* ===============================
   CAWFA Talent Casting Edit (tce-*)
   =============================== */

.tce-card {
  background: #121212;
  border: 1px solid #222;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: #fff;
}

/* Başlıklar */
.tce-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}

.tce-subtitle {
  font-size: 0.9rem;
  color: #bbb;
}

/* Alert stack */
.tce-alertstack {
  margin-bottom: 1rem;
}

.tce-flash {
  transition: opacity 0.4s ease;
}

/* Alerts dark override */
.tce-card .alert {
  border-radius: 12px;
  color: #fff;
  border-width: 1px;
}

.tce-card .alert-success {
  background: rgba(0, 158, 71, 0.15);
  border-color: rgba(0, 158, 71, 0.35);
}

.tce-card .alert-danger {
  background: rgba(217, 4, 4, 0.15);
  border-color: rgba(217, 4, 4, 0.35);
}

/* Kategori */
.tce-category {
  padding: 1rem;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  background: #1a1a1a;
}

.tce-cat-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #f1f1f1;
  border-bottom: 1px solid #2c2c2c;
  padding-bottom: 0.5rem;
}

/* Label & Checkbox */
.tce-label {
  display: flex;
  align-items: center;
  background: #1b1b1b;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tce-label:hover {
  background: #222;
  border-color: #d90404;
}

.tce-label input[type="checkbox"] {
  margin-right: 0.6rem;
  transform: scale(1.2);
  accent-color: #d90404; /* destekleyen tarayıcılar için */
}

.tce-label.active {
  border-color: #d90404;
  background: #222;
  color: #fff;
}

/* Butonlar */
.tce-btn {
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #d90404, #730707);
  border: none;
  cursor: pointer;
  transition:
    transform 0.08s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    background 0.18s ease;
}

.tce-btn i {
  vertical-align: middle;
}

.tce-btn:hover {
  background: linear-gradient(135deg, #b10303, #5a0505);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 4, 4, 0.28);
}

.tce-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Outline butonlar (Önceki / Sonraki) */
.tce-btn-outline {
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid #d90404;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.08s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.tce-btn-outline i {
  vertical-align: middle;
}

.tce-btn-outline:hover {
  background: rgba(217, 4, 4, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.tce-btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Buton satırı */
.tce-btn-row {
  gap: 0.5rem;
}
