/* Body Styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color:aliceblue;
}

/* Jumbotron Styles */
.jumbotron {
  background-color: #038189;
  color: #fff;
  padding: 2rem;
  margin-bottom: 0;
}

#showForm {
  display: block;
  margin: 0 auto;
  margin-top: 15px; 
}

#getVals {
  display: block;
  margin: 0 auto;
}

#inputs {
  border: 1px solid gray;
  border-radius: .5rem;
  padding: 2.5rem;
  background-color: lightgray;
}

/* Form Styles */
#inputs label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
  text-align: left;
}

#inputs input[type=text],
#inputs select {
  width: 100%;
  padding: .375rem .75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#inputs select.form-control {
  width: 100%;
}

#inputs input[type=text]:focus,
#inputs select:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
  outline: none;
  border-radius: .5rem !important;
}

#control-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

/* Button Styles */
button {
  background-color: #038189;
  color: #fff;
  border: none;
  border-radius: .5rem;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  transition: all .15s ease-in-out;
  margin: .5rem;
}

button:hover {
  /* background-color: #66b7be; */
  opacity: 0.7; 
}

/* Container Styles */
.container {
  margin-top: 2rem;
}

@media only screen and (min-width: 576px) {
  .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}

.transaction-row {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
}

.transaction-col-md-3 {
  width: 33.33%;
  border: 1px solid gray;
  padding: 10px;
  text-align: center;
  margin: 10px;
  background-color: lightgray;
}

.transaction-col-md-6 {
  border: 1px solid gray;
  padding: 10px;
  text-align: center;
  margin: 20px;
  background-color: lightgray;
}

#control-center,
.text-center {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.clear {
  text-align: center;
  margin: 0 auto;
  border: 1px solid gray;
  width: 50%;
  padding: 2rem;
}

.clear .row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.clear .col {
  width: 50%;
}

.clear-col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.clear-col input {
  margin-bottom: 10px;
}

.buttons {
  margin-bottom: 3rem;
}

div {
  border-radius: .5rem;
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#transaction {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-items: center;
}

.redButton {
  background-color: red;
}

/* .redButton button:hover {
  background-color: salmon;
} */