/* Call Tracker Admin Stilleri */

.ct-wrap {
  max-width: 1200px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ct-wrap h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.ct-wrap h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  color: #333;
  border-left: 4px solid #0073aa;
  padding-left: 8px;
}

/* Filtre formu */
.ct-filter {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  background: #f5f6fa;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.ct-filter label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ct-filter select,
.ct-filter input {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.9rem;
}

/* Özet kartlar */
.ct-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.ct-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 20px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex: 1;
}

.ct-card--blue   { background: #e8f4fd; border-top: 4px solid #0073aa; }
.ct-card--green  { background: #eafaf1; border-top: 4px solid #27ae60; }
.ct-card--orange { background: #fef9e7; border-top: 4px solid #f39c12; }

.ct-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
}

.ct-lbl {
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
  text-align: center;
}

/* Tablolar */
.ct-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-radius: 6px;
  overflow: hidden;
}

.ct-table thead tr {
  background: #0073aa;
  color: #fff;
}

.ct-table th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ct-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.ct-table tbody tr:hover {
  background: #f9fbff;
}

.ct-table tbody tr:last-child td {
  border-bottom: none;
}

.ct-table--sm td {
  padding: 7px 10px;
  font-size: 0.82rem;
}

.ct-table a {
  color: #0073aa;
  text-decoration: none;
}

.ct-table a:hover {
  text-decoration: underline;
}

.ct-table small {
  color: #888;
  font-size: 0.78rem;
}

.ct-table strong {
  color: #e74c3c;
  font-size: 1rem;
}
/* Tablo scroll */
.ct-table-wrap {
  overflow-x: auto;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 1rem;
}
.ct-search-info {
  background: #e8f4fd;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.ct-son-aramalar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.ct-son-aramalar-header h3 {
  margin: 0;
}
.ct-excel-btn {
  background: #27ae60 !important;
  color: #fff !important;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
}