body {
  font-family: Arial, sans-serif;
  background: #6940ff;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 400px;
}

h1 {
  text-align: center;
  margin-bottom: 25px;
  padding-top:5px;
}

.header-row{
  display: flex;
  justify-content:space-around;
  align-items: center;
  margin-bottom: 3px;
}

.input-section {
  display: flex;
  gap: 10px;
}

input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
}

button {
  padding: 10px 15px;
  background-color: #5cb85c;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #4cae4c;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

#prioritySelect {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
}

.priority-badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top:3px;
  justify-content: left;
}

/* Colors */
.priority-low {
  background-color: #28a745; /* green */
}

.priority-medium {
  background-color: #ffc107; /* yellow */
}

.priority-high {
  background-color: #dc3545; /* red */
}



li {
  background: #eee;
  padding: 10px;
  margin-bottom: 10px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
}

.completed {
  text-decoration: line-through;
  color: gray;
}

.delete-btn {
  background-color: crimson;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}
  