/* public/style.css */
body {
  background-color: #212529;
}

.task-card .progress-bar {
  transition: width 0.4s ease-in-out;
}

.progress-bar.bg-success {
  background-color: #198754 !important;
}
.progress-bar.bg-info {
  background-color: #0dcaf0 !important;
}
.progress-bar.bg-warning {
  background-color: #ffc107 !important;
}
.progress-bar.bg-danger {
  background-color: #dc3545 !important;
}
.progress-bar.bg-secondary {
  background-color: #6c757d !important;
}

.task-card .card-title {
  font-size: 1.1rem;
  color: #e9ecef;
}

.task-card .card-text {
  font-size: 0.8rem;
}

.status-message {
  font-size: 0.85rem;
  color: #adb5bd;
}
