/* Custom CSS for WhatsBridge Admin */

body[data-bs-theme="dark"] {
  background-color: #181a1b;
  color: #e0e0e0;
}
body[data-bs-theme="light"] {
  background-color: #f8f9fa;
  color: #212529;
}

.navbar[data-bs-theme="dark"] {
  background-color: #23272b !important;
}
.navbar[data-bs-theme="light"] {
  background-color: #343a40 !important;
}

.card[data-bs-theme="dark"] {
  background-color: #23272b;
  color: #e0e0e0;
}
.card[data-bs-theme="light"] {
  background-color: #fff;
  color: #212529;
}

.table-dark, .table[data-bs-theme="dark"] {
  background-color: #23272b;
  color: #e0e0e0;
}
.table-light, .table[data-bs-theme="light"] {
  background-color: #fff;
  color: #212529;
}

.btn-darkmode {
  background: none;
  border: none;
  color: #ffc107;
  font-size: 1.2rem;
}

input[data-bs-theme="dark"], textarea[data-bs-theme="dark"], select[data-bs-theme="dark"] {
  background-color: #23272b;
  color: #e0e0e0;
  border-color: #444;
}
input[data-bs-theme="light"], textarea[data-bs-theme="light"], select[data-bs-theme="light"] {
  background-color: #fff;
  color: #212529;
  border-color: #ced4da;
}

/* Add more custom styles as needed for both themes */
