@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
  margin: 0;
  min-width: 250px;
  font-family: 'Poppins', sans-serif;
  background: #f5f6fa;
  color: #333;
}

h2 {
  margin: 10px;
  font-weight: 600;
  color: #ffffff;
}

ul {
  margin: 0;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 10px;
  text-align: left;
}

tr {
  cursor: pointer;
  position: relative;
  padding: 12px 8px 12px 40px;
  background: #ffffff;
  font-size: 17px;
  transition: background 0.25s, transform 0.15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header {
  background: linear-gradient(135deg, #e84118, #c23616);
  padding-bottom: 20px;
  padding-left: 10px;
  padding-left: 10px;
  color: white;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.header:after {
  content: "";
  display: table;
  clear: both;
}

input[type="text"] {
  margin: 0;
  border: 1px solid #dcdde1;
  border-radius: 6px;
  padding: 12px;
  font-size: 15px;
  width: calc(100% - 24px);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
  transition: border 0.25s, box-shadow 0.25s;
  margin-bottom: 20px;
}

.addBtn {
  padding: 8px 14px;
  background: #ff5f57;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.addBtn:hover {
  background: #e84118;
  transform: scale(1.05);
}

.addBtn:active {
  transform: scale(0.96);
}

.deleteBtn {
  width: 100%;
  padding: 10px 0;
  background: #ff5f57;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  text-align: center;
}

.deleteBtn:hover {
  background: #e84118;
  transform: scale(1.05);
}

.deleteBtn:active {
  transform: scale(0.96);
}

td.checkboxCell {
  text-align: center;
  vertical-align: middle;
}

td.checkboxCell input[type="checkbox"] {
  transform: scale(1.3);
  cursor: pointer;
  accent-color: #e84118;
}
