.dashboardtodo {
  background: linear-gradient(135deg, #6dd5ed, #2193b0);
  padding: 50px 0px;
}

/* Todo Card - premium look */
.dashboardtodo .todo-card {
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboardtodo .todo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.dashboardtodo .todo-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1b4f72;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.7px;
}

/* Input group - sleek */
.todo-input-group {
  gap: 6px;
  margin-bottom: 12px;
}

.todo-input-group .form-control {
  height: 42px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 0 12px;
  transition: all 0.3s ease;
}

.todo-input-group .form-control:focus {
  border-color: #1b4f72;
  box-shadow: 0 0 10px rgba(27, 79, 114, 0.3);
}

.todo-input-group .btn {
  height: 42px;
  width: 74px;
  padding: 0;
  background: linear-gradient(45deg, #1b4f72, #2980b9);
  color: #fff;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease, transform 0.2s ease;
}

.todo-input-group .btn:hover {
  background: linear-gradient(45deg, #2980b9, #6dd5ed);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(33, 147, 176, 0.4);
}

/* Todo list */
.todo-list {
  padding-inline: 0;
  height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #2980b9 #f1f1f1;
}

.todo-list::-webkit-scrollbar {
  width: 6px;
}

.todo-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.todo-list::-webkit-scrollbar-thumb {
  background-color: #2980b9;
  border-radius: 10px;
}

/* Todo items - neumorphic style */
.todo-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: #f0f4f8;
  border-radius: 15px;
  font-size: 0.95rem;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.08), -3px -3px 6px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.todo-list li:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.12), -5px -5px 15px rgba(255, 255, 255, 0.85);
}

/* Action buttons - sleek & premium */
.todo-actions .btn {
  padding: 5px 10px;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.todo-actions .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.todo-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-top: 15px;
  color: #555;
}

/* Clear All button - gradient & hover */
.btn-clear {
  background: linear-gradient(45deg, #e74c3c, #ff6b6b);
  color: #fff;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease, transform 0.2s ease;
}

.btn-clear:hover {
  background: linear-gradient(45deg, #ff3b3b, #ff4f4f);
  transform: scale(1.05);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Error messages */
.error-msg {
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: #e74c3c;
  font-weight: 500;
}

/* Responsive Styles */
/* Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .dashboardtodo {
    padding: 10px;
    height: auto;
  }
  .dashboardtodo .todo-card {
    padding: 20px;
    border-radius: 16px;
  }
  .dashboardtodo .todo-card h3 {
    font-size: 1.25rem;
  }
  .todo-input-group {
    flex-direction: row;
    gap: 10px;
  }
  .todo-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .todo-actions {
    width: 100%;
    gap: 5px;
    display: flex;
    justify-content: flex-end;
  }
  .todo-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .btn-clear {
    width: 100%;
    text-align: center;
  }
}
/* Medium devices (tablets, 576px to 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .dashboardtodo .todo-card {
    padding: 22px;
  }
  .todo-input-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .todo-input-group .form-control {
    flex: 1 1 60%;
  }
  .todo-input-group .btn {
    flex: 1 1 35%;
  }
  .todo-list li {
    font-size: 0.9rem;
  }
}
/* Large devices (small laptops and up) */
@media (min-width: 768px) {
  .todo-input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}/*# sourceMappingURL=todolistDesign2.css.map */