/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/style.css ***!
  \*****************************************************************/
.todo-details {
  background: #181818 !important;
  margin: 0 0 16px 0;
  padding: 18px;
  border-radius: 8px;
  color: #ffd600;
}
.todo-details label,
.todo-details b {
  color: #ffd600;
  font-weight: bold;
  font-size: 1.1rem;
}
.todo-details input,
.todo-details select {
  background: #181818;
  color: #ffd600;
  border: 1px solid #ffd600;
  border-radius: 6px;
  padding: 8px;
  font-size: 1rem;
  margin-top: 6px;
  margin-bottom: 12px;
}
.todo-details textarea {
  background: #181818;
  color: #ffd600;
  border: 1px solid #ffd600;
  border-radius: 6px;
  padding: 8px;
  font-size: 1rem;
  margin-top: 6px;
  margin-bottom: 12px;
}
.todo-details input:focus,
.todo-details select:focus,
.todo-details textarea:focus {
  border-color: #ffea00;
  outline: none;
}
.todo-details button {
  margin-top: 8px;
  margin-right: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  background: #ffd600;
  color: #181818;
  cursor: pointer;
  transition: background 0.2s;
}
.todo-details button:hover {
  background: #ffea00;
}
.todo-details button:last-child {
  background: #e53935;
  color: #fff;
}
.todo-details button:last-child:hover {
  background: #b71c1c;
}
body {
  font-family: Arial, sans-serif;
  background: #181818;
  margin: 0;
  padding: 0;
  color: #fff;
}

#app {
  max-width: 800px;
  margin: 40px auto;
  background: #222;
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow 0.3s;
}

.projects-list {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

.project-item {
  padding: 10px 24px;
  border-radius: 8px;
  background: #333;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 6px rgba(255,255,0,0.04);
  color: #fff;
}
.project-item.selected {
  background: #ffd600;
  color: #181818;
  box-shadow: 0 4px 12px rgba(255,255,0,0.15);
}

form input, form select, form button {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ffd600;
  font-size: 1rem;
  margin-right: 8px;
  outline: none;
  transition: border-color 0.2s;
  background: #222;
  color: #fff;
}
form input:focus, form select:focus {
  border-color: #ffd600;
}
form button {
  background: #ffd600;
  color: #181818;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
form button:hover {
  background: #ffea00;
}

.todos-list {
  margin-top: 8px;
}
.todo-item {
  margin: 12px 0;
  padding: 12px 18px;
  background: #181818 !important;
  border-radius: 8px;
  border-left: 6px solid #ffd600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
  color: #ffd600;
}
.todo-item strong {
  color: #ffd600;
}
.todo-item span {
  color: #ffd600;
}
.todo-item input {
  background: #181818 !important;
  color: #ffd600;
  border: 1px solid #ffd600;
  border-radius: 6px;
  padding: 8px;
  font-size: 1rem;
}
.todo-item input:focus {
  border-color: #ffea00;
  outline: none;
}


/*# sourceMappingURL=style.css.map*/