 body {
  background-color: #EEF8F7;
  color: #333333;
 }
 
.priority-tag, .btn {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  border: 1px solid #ccc;
  margin-right: 6px;
}

.priority-high {
  border-color: #e53935;
  color: #e53935;
}

.priority-medium {
  border-color: #fb8c00;
  color: #fb8c00;
}

.priority-low {
  border-color: #43a047;
  color: #43a047;
}

.task-completed {
  opacity: 0.5;
  text-decoration: line-through;
}

.btn {
  background-color: #446EEB;
  color: #FFFFFF;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.85;
}

button {
  margin-bottom: 10px;
}

hr{
  border: 0.5px solid #333333;
}

.text-field {
  background-color: white;
  border: 0.5px solid #333333;
  border-radius: 6px;
  width: 80%;
  height: 20px;
}

.task-list{
  max-width: 640px;
  margin: 0 auto;
}

.task-actions {
  display: flex;
  align-items: right;
  gap: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.flash-notice { color: green; }
.flash-alert  { color: red; }

.field_with_errors {
  display: inline;
}