* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

header {
  background: #7339fa;
  color: white;
  text-align: center;
  padding: 30px 15px;
}

header h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

main {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
}

.form-section,
.issues-section {
  background: rgb(220, 228, 255);
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

h2 {
  margin-bottom: 20px;
}

form input,
form textarea,
form select,
form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 7px;
  font-size: 15px;
}

form textarea {
  height: 100px;
  resize: none;
}

button {
  background: #7339fa;
  color: white;
  cursor: pointer;
  border: none;
  font-weight: bold;
}

button:hover {
  background: #361a75;
}

.issue-card {
  background: #f9fafb;
  border-left: 5px solid #c40000;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 7px;
}

.issue-card h3 {
  margin-bottom: 8px;
}

.issue-card p {
  margin-bottom: 6px;
}

.status {
  font-weight: bold;
}
