
.container-transaction {
  margin-left: 50px;
  margin-right: 50px;
}
.form-area {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  font-size: 12px;
  background-color: #f9f9f9;
  box-sizing: border-box;
  resize: none;
}

.form-transaction {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-transaction-description {
  width: 100%;
  margin-bottom: 10px;
}

.transaction-row {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
}

select#types-transaction.types-transaction-select2,
select.choose-storage-select2,
select.choose-product-select2 {
  width: 80%;
}

.number-field {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 0.25em;
}

.number-field:focus {
  border-color: #66afe9;
  outline: none;
  box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
}

.form-label {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
}

.btn-add-product-row {
  display: none;
}

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

input.btn-submit-transaction {
  all: unset;
  margin-top: 10px;
  background-color: #588bbd;
  border: none;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

input.btn-submit-transaction:hover {
  background-color: #4679a5;
}

.link-show-transaction {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  color: #6495ED;
}

.style-link-transaction {
  color: inherit !important;
  margin: 5px;
}

.style-link-transaction-destroy {
  color: red !important;
  margin: 5px;
}

/* table start */
tbody.index-transaction,
tbody.show-transaction {
  border: 1px solid rgb(160 160 160);
}

th.index-transaction, th.show-transaction,
td.index-transaction, td.show-transaction {
  padding-top: 12px;
  padding-bottom: 12px;
  color: #588bbd;
  font-size: 10px;
}

tr.index-transaction, tr.show-transaction {
  border-bottom: 1px solid rgb(160, 160, 160);
}
tr.index-transaction-title, tr.show-transaction-title {
  padding: 5px;
  font-size: 12px;
}

th.index-transaction-title, th.show-transaction-title {
  font-size: 12px;
  padding: 5px;
}

th[scope="row-transaction"] a:hover {
  text-decoration: underline;
  color: #4679a5;
}

th[scope="col-transaction"] {
  background-color: #d7d7d7;
  color: black;
}

td.index-transaction, td.show-transaction {
  text-align: center;
}

table.index-transaction, table.show-transaction {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #ccc(140 140 140);
  font-size: 12px;
  letter-spacing: 1px;
}

tr.index-transaction {
  cursor: pointer;
}

tr.index-transaction:hover {
  background-color: #d7d7d7;
}
/* table end */

.filter-item {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  margin-bottom: 5px;
}

.filter-actions {
  display: flex;
  margin-top: 10px;
}
/* quantity error */
.error {
  border: 1px solid rgb(182, 8, 8);
}
.error-message {
  color: rgb(182, 8, 8);
  font-size: 10px;
  margin-top: 5px;
}
/* quantity error */

.available-quantity {
  font-size: 10px;
  margin-top: 5px;
}