* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  .todo-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .todo-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  .todo-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .todo-form input[type="text"], input[type="datetime-local"]{
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .todo-form button {
    padding: 10px 15px;
    background-color: #0b3ae3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .todo-form button:hover {
    background-color: #5945a0;
  }

  .todo-list {
    list-style: none;
  }

  .todo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    
    border-bottom: 1px solid #eee;
  }

  .todo-item span {
    flex: 1;
  }

  .todo-item button {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 16px;
    cursor: pointer;
  }

  .todo-item button:hover {
    color: #e60000;
  }

  .empty-message {
    text-align: center;
    color: #999;
    margin-top: 10px;
    font-style: italic;
  }
.toast{
  z-index: 1;
}
.notificaciontoast{
  display: none;
  top: 7px;
  position: absolute;
  right: 15px;

}

.tareastitulos{
  color: #e60000;
}
.equis{
  color: #e60000;
  position: absolute;
  margin: -3em;
  cursor: pointer;
  text-decoration: none;
}