body {
  margin: 0;
  font-family: sans-serif;
  background: #ffffff;
  color: #374151;
}

header {
  background: #1e3a8a;
  color: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}
header .admin-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
header .admin-actions span {
  font-size: 1rem;
}
header .admin-actions a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
header .admin-actions a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1000px;
  margin: 3rem auto;
  text-align: center;
}

h2 {
  font-size: 1.25rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-submit {
  background: #1e3a8a;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 1.25rem;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover,
.btn-submit:hover {
  background: #1e40af;
}

.prcontainer {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

h1 {
  font-size: 1.75rem;
  color: #1e40af;
  margin-bottom: 2rem;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  color: #374151;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.checkbox-group {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #374151;
}

.alert {
  padding: 12px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}
.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  color: #842029;
}
.alert-success {
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  color: #0f5132;
}

/*# sourceMappingURL=admin_header.css.map */
