body {
  font-family: Arial, sans-serif;
  margin: 30px;
  background-color: #fdfdfd;
  color: #333;
}

h1 {
  margin-bottom: 20px;
}

.section {
  margin-top: 30px;
}

.row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.space-between {
  justify-content: space-between;
}

.field {
  min-width: 200px;
}

.top-margin {
  margin-top: 20px;
}

.overdue {
  color: red;
  font-weight: bold;
  margin-left: 5px;
}

.disabled-label {
  color: gray;
  margin-left: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border: 1px solid #ccc;
}

th, td {
  padding: 8px 12px;
  border: 1px solid #ccc;
  text-align: left;
}

th {
  background-color: #f0f0f0;
}

select {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 180px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

select:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

select:disabled {
  background-color: #eee;
  cursor: not-allowed;
}

button {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

button:hover:enabled {
  background-color: #0056b3;
}

input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 5px;
}

.svr-highlight {
  background-color: #fef9e7;
  border: 1px solid #f7dc6f;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
}

.align-center {
  display: flex;
  align-items: center;
  gap: 10px;
}
