body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.header {
  background-color: #ffffff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 2px solid #00321a;
}

.header img {
  height: 100%;
}

.header h1 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 300;
  color: #3c6e47;
  white-space: nowrap;
}

.header .title-container {
  margin-left: 20px;
}

.header h1 span {
  font-weight: 700;
  color: #3c6e47;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header .title-container {
    margin-left: 0;
  }

  .header img {
    height: 40px;
    margin-bottom: 10px;
  }

  .header h1 {
    font-size: 1.2rem;
  }
}

.container {
  max-width: 800px;
  margin: 40px auto;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  color: #00321a;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-label {
  color: #00321a;
  font-weight: bold;
}

.btn-primary {
  background-color: #006e2e;
  border-color: #006e2e;
  width: 100%;
}

.btn-primary:hover {
  background-color: #005a24;
  border-color: #005a24;
}

.btn-secondary {
  background-color: #cccccc;
  border-color: #bbbbbb;
  width: 100%;
}

.btn-secondary:hover {
  background-color: #dddddd;
  border-color: #cccccc;
}

.btn-container {
  display: flex;
  gap: 15px;
}

.modal-header {
  background-color: #00321a;
  color: white;
}

.spinner-border {
  color: #00321a;
}

.input-group-text {
  background-color: #006e2e;
  color: white;
  border: none;
  font-weight: bold;
}

.input-group-text:hover {
  background-color: #005a24;
}

table {
  font-size: 0.9rem;
}

table th {
  background-color: #006e2e;
  color: white;
  text-align: center;
}

table td {
  text-align: center;
}

.btn-close {
  color: #fff !important;
}
