* {
  font-family: "Segoe UI", sans-serif;
  box-sizing: border-box;
}
body {
  background-color: #f2f4fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.wave-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sunset-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #fef3c7 0%, #fbcfe8 40%, #e0c3fc 100%);
  z-index: -1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%; 
  height: 320px;
  animation: moveWave 10s ease-in-out infinite alternate;
}

.wave1 { z-index: 1; animation-delay: 0s; }
.wave2 { z-index: 2; animation-delay: 2s; }
.wave3 { z-index: 3; animation-delay: 4s; }

@keyframes moveWave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); } 
}
.container {
  background: linear-gradient(145deg, #fdf2f8, #fae8ff, #ede9fe);
  border-radius: 20px;
  padding: 30px;
  width: 600px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
h1 {
  text-align: center;
  color: #8a4df9;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 1px 1px 2px #ccc;
}
.input-section {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
input[type="text"],
input[type="date"] {
  padding: 10px;
  border: none;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
button {
  background-color: #8a4df9;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  opacity: 0.9;
}
.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
th,
td {
  padding: 10px;
  text-align: center;
}
th {
  background-color: #edf0f8;
  color: #333;
}

.plus{
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  padding: 7px 15px;
  font-weight: 500;
}
.btn-action {
  padding: 5px 10px;
  margin: 0 3px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  border: none;
}
.btn-done {
  background-color: #27ae60;
  color: white;
}
.btn-cancel {
  background-color: #e74c3c;
  color: white;
}
.delete-all {
  float: right;
  margin-top: 10px;
  background: #8a4df9;
  padding: 8px 15px;
  font-size: 12px;
}
.status-pending {
  background-color: #f1c40f;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: inline-block;
  font-weight: bold;
}

.status-finished {
  background-color: #27ae60;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: inline-block;
  font-weight: bold;
}

.status-canceled {
  background-color: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: inline-block;
  font-weight: bold;
}

.status-expired {
  background-color: #f99a4d;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: inline-block;
  font-weight: bold;
}
.task-wrapper {
  position: relative;
  padding: 10px;
  min-height: 40px;
}

.task-text {
  padding-left: 3px; 
}

.btn-delete {
  position: absolute;
  top: -20px;
  left: -20px; 
  background: none;
  border: none;
  font-size: 14px;
  color: #aaa;
  cursor: pointer;
}

.btn-delete:hover {
  color: #e74c3c;
}
.custom-filter .filter-btn {
  padding: 10px 15px;
  height: 40px; 
  border: none;
  border-radius: 10px;
  background-color: #8a4df9;
  color: white;
  font-weight: bold;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: auto; 
}
.custom-filter .filter-btn:focus {
  outline: none;
  box-shadow: none;
}

.custom-filter {
  position: relative;
}

.custom-filter::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: white;
  font-size: 12px; 
  pointer-events: none;
}


.custom-filter .filter-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 25px; 
}

.filters button {
  padding: 10px 15px;
  height: 40px;
}
