body {
  font-family: "Segoe UI", sans-serif;
  background: #f6f4fb;
  color: #333;
  margin: 0;
}

header {
  background: #5b2fb8;
  color: white;
  text-align: center;
  padding: 2rem;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  padding: 2rem;
}

section {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

textarea,
input {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  background: #5b2fb8;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
}

button:hover {
  background: #44248b;
}

ul {
  list-style: none;
  padding: 0;
}

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

li span.status {
  font-weight: bold;
  color: #333;
}

li.inactive {
  background: #fcdcdc;
}

li.closed {
  background: #fde8c4;
}
#notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#notification.show {
  opacity: 1;
}

#notification.success {
  background-color: #28a745;
}

#notification.error {
  background-color: #dc3545;
}

#notification.warning {
  background-color: #ffc107;
  color: #222;
}
