
body.dark {
  background-color: #0f172a; 
  color: #e2e8f0;            
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
body.dark #themeToggle{
    color: black;
}
 body.dark #admin{
  color: white;
 }

body.dark nav {
  background-color: #1e293b;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark .card {
  background-color: #1e293b;
  border: 1px solid #334155;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  color: #e2e8f0;
}

body.dark table {
  background-color: #1e293b;
  color: #e2e8f0;
  border-collapse: collapse;
  width: 100%;
}

body.dark thead {
  background-color: #334155;
  color: #e2e8f0;
}

body.dark tbody tr {
  border-bottom: 1px solid #334155;
  transition: background-color 0.3s ease;
}

body.dark tbody tr:hover {
  background-color: #293548;
}

body.dark input {
  background-color: #1e293b;
  border: 1px solid #334155;
  color: #e2e8f0;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

body.dark input::placeholder {
  color: #94a3b8;
}

body.dark input:focus {
  outline: none;
  border-color: #3b82f6;
}

body.dark select {
  background-color: #1e293b;
  border: 1px solid #334155;
  color: #e2e8f0;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

body.dark .status-active {
  background-color: #064e3b;
  color: #34d399;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

body.dark .status-pending {
  background-color: #78350f;
  color: #fbbf24;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

body.dark .status-blocked {
  background-color: #7f1d1d;
  color: #f87171;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

body.dark.premium-gradient {
  background: linear-gradient(to bottom right, #0f172a, #020617);
}