/* ============================
   TALENT APPEARANCE CSS
============================ */

/* Container */
.appearance-container {
  margin-top: 1rem;
  background: #111;
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

/* Header */
.appearance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.appearance-title {
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.appearance-title .appearance-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: #aaa;
}

.appearance-actions {
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .appearance-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .appearance-actions {
    margin-top: 0.75rem;
    justify-content: flex-start;
  }
}

/* Buttons */
.app-btn-red {
  background: #d90404;
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background .2s;
  font-size: 14px;
}
.app-btn-red:hover {
  background: #b30303;
}

.app-btn-light {
  background: #f1f1f1;
  border: 1px solid #ddd;
  color: #333;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background .2s;
  font-size: 14px;
}
.app-btn-light:hover {
  background: #e2e2e2;
}

/* Alerts */
.appearance-alerts .alert {
  margin-top: .5rem;
  padding: .5rem .75rem;
  border-radius: 4px;
  font-size: .9rem;
}

/* Table */
.appearance-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: .5rem;
  background: #1a1a1a;
}

.appearance-table th,
.appearance-table td {
  padding: 10px 14px;
  border: none; /* beyaz çizgi istemiyoruz */
  color: #fff;
}

.appearance-table th {
  width: 30%;
  font-weight: 600;
  color: #ddd;
  background: #222;
}

.appearance-table td {
  background: #1a1a1a;
  color: #f1f1f1;
}

/* Empty state */
#appearanceView p {
  color: #ccc !important;
  margin: 0.5rem 0;
}

/* Modal */
.appearance-modal {
  background: #1a1a1a;
  color: #fff;
  border-radius: 8px;
}

.appearance-modal .modal-header {
  border-bottom: none; /* beyaz çizgiler silindi */
}

.appearance-modal .modal-footer {
  border-top: none; /* beyaz çizgiler silindi */
}

.appearance-modal .form-label {
  color: #ccc;
}

.appearance-modal .form-select {
  background: #111;
  color: #fff;
  border: 1px solid #333;
}
.appearance-modal .form-select option {
  background: #111;
  color: #fff;
}
