/* FORM */
.cheetahmp-form-records-review-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.cheetahmp-table-records-review-wrapper {
  width: 100%;
  border: 2px solid transparent;
}
.cheetahmp-form-records-review-wrapper input {
  width: 57.5%;
  border-radius: 5px;
  font-style: italic;
  padding: 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.cheetahmp-form-records-review-wrapper input:focus {
  border: 2px solid #f49522;
}
.cheetahmp-form-records-review-wrapper button {
  background-color: #00a924;
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 10px;
  transition: all 0.3s ease;
}
.cheetahmp-form-records-review-wrapper button:hover {
  transform: scale(1.1);
  background: none;
  border: 2px solid #00a924;
  color: #00a924;
}
/* TABLES */
.cheetahmp-records-review-table,
.cheetahmp-shipment-status-table {
  width: 100%;
  border: none;
}
.cheetahmp-records-review-table thead tr .cheetahmp-headers-head,
.cheetahmp-shipment-status-table thead tr .cheetahmp-headers-head {
  background-color: rgba(0, 0, 0, 0.8);
}
.cheetahmp-records-review-table thead tr th,
.cheetahmp-shipment-status-table thead tr th {
  background-color: #f49522;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px;
  text-align: center;
}
.cheetahmp-records-review-table tbody tr td,
.cheetahmp-shipment-status-table tbody tr td {
  padding: 10px;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.8);
}
.cheetahmp-records-review-table tbody tr td {
  width: 50%;
}
.cheetahmp-shipment-status-table tbody tr td {
  width: auto;
}
.cheetahmp-records-review-table tbody tr:nth-child(even),
.cheetahmp-shipment-status-table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
.cheetahmp-records-review-table tbody tr,
.cheetahmp-shipment-status-table tbody tr {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.01);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.cheetahmp-records-review-table tbody tr:hover,
.cheetahmp-shipment-status-table tbody tr:hover {
  transform: scale(1.01);
  border-bottom: 2px solid #f49522;
  background-color: rgba(244, 149, 34, 0.2);
}
