.centered {
  text-align: center !important;
}

.centered-bold {
  text-align: center;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.number {
  text-align: right !important;
}

.centeredTable {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.formContainer {
  display:flex; 
  justify-content:center;
  padding-right: 30%;
  padding-left: 30%;
}

.auditInfo {
  justify-content: left;
  align-items: left;
  padding: 10px;
  margin: 10px;
  border:1px solid black; 
  border-radius:4px;
}

#spinner {
  display: flex;
  margin: 10px 0;
  align-items: center;
  gap: 10px;
}

#transferForm input {
  margin: 0;
  padding: 3px;
  border: 1px solid #000;
  border-radius: 4px;
  font: inherit;
  color: inherit;
  background-color: transparent;
}

.blue-button {
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 2px solid #5285ec;
  color: white;
  background-color: #5285ec;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.red-button {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 2px solid #e63f3f; /* Green border */
  color: whitesmoke; /* Green text */
  background-color: #e63f3f;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.green-button {
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 2px solid #2db049;
  color: white;
  background-color: #2db049;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.text-field {
  width: 98%;
}

#transferForm label{
  margin: 0;
}

.radioInput input[type="radio"] {
    width: 20px;
    height: 20px;
}

.asterisk {
  color: red;
  font-size: inherit;
}

.item-form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: left;
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: left;
}

@media screen and (max-width: 960px) {
  .formContainer {
    display: block;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .auditInfo {
      width: 90%; /* Make it take most of the screen width */
      margin-bottom: 20px; /* Add spacing between stacked items */
      overflow-x: auto; /* Enable horizontal scrolling */
  }
}  

@media screen and (max-width: 600px) {
  .item-form-inline {
    /* display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: left; */
    padding-bottom: 10px;
    border-bottom: 2px solid black;
  }
}