body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: #f3f4f6;
  color: #111827;
  text-align: center;
}

.form-section {
  max-width: 80%;
  margin: 2rem auto;
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.site-header {
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: white;
}

h1 {
  font-size: 1.4rem;
}

h2 {
  font-size: 1.15rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

label {
  display: inline-block;
  width: 20%;
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input,
select {
  width: 50%;
  max-width: 50%;
  padding: 0.5rem 0.7rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
  box-sizing: border-box;
}

input:focus,
select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.button-table {
  margin: 0.3rem 1.3rem;
  padding: 0.55rem 1.2rem;
  border-radius: 60px;
  border: none;
  background-color: #2563eb;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.8rem;
}

.button-page {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  background-color: #2563eb;
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  width: 200px;
  margin-bottom: 30px;
}

button:hover {
  background-color: #1d4ed8;
}

.button-danger {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  background-color: #e71515;
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  width: 200px;
  margin-bottom: 30px;
}

.button-danger:hover {
  background-color: #5d0909;
}

.table-scroll {
  max-height: 400px;
  overflow-y: scroll;
  border: 1px solid black;
  margin: 0 auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}

table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

table tbody tr:hover {
  background-color: #e5f1ff;
}

th,
td {
  border: 1px solid black;
  text-align: center;
}

th {
  position: sticky;
  top: 0px;
  background-color: #f1f1f1;
}

.component {
  width: 300px;
}

.amount {
  width: 150px;
}

.p-info {
  font-style: italic;
  font-weight: bold;
}

a {
  color: #2563eb;
}
