.Table_section {
  background-color: #f8f9fa;
  min-height: 100vh;
}

.Table_section .container {
  margin: 100px auto;
  min-width: 1000px;
}

.Table_section h1 {
  color: #343a40;
  text-align: center;
}

.Table_section button {
  background-color: #44b89d;
  border-color: #44b89d;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  width: 70px;
  transition: background-color 0.3s, border-color 0.3s;
  border: 1px solid #3d9a83;
}

.Table_section button:hover {
  background-color: white;
  color: #3d9a83;
}

.Table_section button.cancel {
  background-color: brown;
  border-color: brown;
}

.Table_section button.cancel:hover {
  background-color: white;
  color: brown;
  border: 1px solid brown;
}

.Table_section table {
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(68, 184, 157, 0.1) 0px 0px 0px 1px;
  width: 100%;
}

.Table_section th,
.Table_section td {
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}

.Table_section tr {
  border-color: rgba(68, 184, 157, 0.1);
}
.Table_section tbody tr {
  background-color: white;
  color: rgb(68, 184, 157);
  text-transform: capitalize;
}

.Table_section thead tr {
  background-color: rgba(6, 53, 71);
}
.Table_section thead tr th {
  color: white;
  font-weight: 500;
}
.Table_section tbody td img {
  width: 60px;
  border-radius: 5px;
  box-shadow: #063547 0px 0px 0px 2px;
}
.Table_section tbody tr:hover {
  background-color: rgba(68, 184, 157, 0.1);
  transition: 0.3s;
}
.Table_section input {
  border: 1px solid rgba(68, 184, 157, 0.5);
  border-radius: 5px;
  outline: rgb(68, 184, 157);
  background-color: white;
}
.Table_section input[type="number"] {
  width: 50px;
}
.Table_section input[type="text"],
.Table_section input[type="date"] {
  width: 125px;
}
.Table_section input[type="file"] {
  width: 100px;
}
.Table_section .table > :not(caption) > * > * {
  background-color: transparent !important;
  border-bottom-width: unset !important;
}

.Table_section {
  overflow-x: auto;
}
