/* Light theme */
body {
  background-color: #ffffff;
  color: #212529;
}

/* Navbar */
.navbar {
  background: #f8f9fa !important;
}
.navbar .nav-link,
.navbar .navbar-brand {
  color: #212529 !important;
}

/* Cards, modals, lists, tables */
.card,
.list-group-item,
.modal-content,
.table {
  background: #ffffff;
  color: #212529;
  border-color: #dee2e6;
}

/* Form elements */
.form-control,
.form-select {
  background: #ffffff;
  color: #212529;
  border-color: #ced4da;
}

/* Buttons */
.btn-primary {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #ffffff;
}
.btn-outline-primary {
  border-color: #0d6efd;
  color: #0d6efd;
}
.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.list-group-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.list-group-item h6 {
  font-weight: 600;
}

/* Zebra backgrounds + subtle hover */
.zebra-even { background-color: #ffffff; }  /* white */
.zebra-odd  { background-color: #f8f9fa; }  /* light gray */

.task-card.zebra-even:hover,
.task-card.zebra-odd:hover {
  filter: brightness(0.98);
}

/* Keep list-group dividers invisible for cleaner blocks */
.task-card .list-group-item {
  border: 0;
}

.card.border {
  border: 1px solid #ccc; /* Subtle border */
  border-radius: 6px;
}

.card.border .card-header {
  border-bottom: 1px solid #ccc;
}