/* isvizesi.net - Admin Panel Özel Stilleri */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background-color: #f1f5f9;
  font-family: var(--font-main);
}

.admin-sidebar {
  width: 260px;
  background-color: #0f172a;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.admin-sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-nav {
  list-style: none;
  padding: 20px 12px;
  flex-grow: 1;
}

.admin-sidebar-nav li {
  margin-bottom: 4px;
}

.admin-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}

.admin-sidebar-nav a:hover, .admin-sidebar-nav li.active a {
  background-color: #1e293b;
  color: #38bdf8;
}

.admin-sidebar-nav a svg {
  color: inherit;
}

.admin-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.admin-topbar {
  background-color: #ffffff;
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}

.admin-content {
  padding: 30px;
  flex-grow: 1;
}

.admin-stat-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 4px;
}

.admin-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.admin-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablo Stilleri */
.admin-table-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 30px;
}

.admin-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.admin-table th {
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
  padding: 14px 20px;
  border-bottom: 1px solid #e2e8f0;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #f8fafc;
}

/* Durum Rozetleri */
.status-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-yeni { background: #dbeafe; color: #1e40af; }
.status-inceleniyor { background: #fef3c7; color: #92400e; }
.status-uygun { background: #d1fae5; color: #065f46; }
.status-reddedildi { background: #fee2e2; color: #991b1b; }
.status-tamamlandi { background: #e0e7ff; color: #3730a3; }

/* Login Ekranı */
.admin-login-body {
  background: linear-gradient(135deg, #0a1329 0%, #0f1e40 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-login-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 440px;
  padding: 40px;
}
