body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

#feedback-form {
  width: 60%;
  margin: 20px auto;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

select:focus,
select:hover {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

select option {
  padding: 12px;
  background: white;
}

select option[value="bug"] {
  background-color: #ffebee;
}

select option[value="suggestion"] {
  background-color: #e3f2fd;
}

select option[value="other"] {
  background-color: #f3e5f5;
}

input[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #0056b3;
}

#feedback-list {
  width: 60%;
  margin: 20px auto;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#feedback-items {
  margin-top: 10px;
}

.feedback-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.feedback-item:last-child {
  border-bottom: none;
}

.fixed-status {
  color: green;
  font-weight: bold;
  margin-left: 10px;
}

.pagination {
  margin: 20px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination button {
  padding: 6px 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.pagination button:hover {
  background: #0056b3;
}

.pagination span {
  color: #666;
}

.feedback-type {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}

.feedback-type.bug {
  background: #ffebee;
  color: #c62828;
}

.feedback-type.suggestion {
  background: #e3f2fd;
  color: #1565c0;
}

.feedback-type.other {
  background: #f3e5f5;
  color: #6a1b9a;
}

select.bug {
  border-color: #c62828;
}

select.suggestion {
  border-color: #1565c0;
}

select.other {
  border-color: #6a1b9a;
}