.tcs-container form {
  width: 70%;
  padding: 5px;
  margin: auto;
  margin-bottom: 15px !important;
  text-align: center;
}
.tcs-container form input {
  background-color: #fff;
  text-align: center;
  padding: 5px 10px;
  width: 100%;
  border: 2px solid #ddd;
  font-size: 20px;
  box-shadow: none;
  outline: none;
  border-radius: 0.4rem;
}
.tcs-container form input::-moz-placeholder {
  color: #b6b6b6;
  opacity: 1;
}
.tcs-container form input::placeholder {
  color: #b6b6b6;
  opacity: 1;
}
.tcs-container form input::-ms-input-placeholder {
  color: #b6b6b6;
  color: #b6b6b6;
}
.tcs-container form input:focus {
  border-color: #ddd;
  box-shadow: none;
  outline: none;
}
.tcs-container form input:disabled {
  color: #b6b6b6;
  border-color: #ddd;
  cursor: not-allowed;
}
.tcs-container form button {
  white-space: nowrap;
  background-color: #d6010d;
  color: #fff;
  border: 1px solid #d6010d;
  border-radius: 0.4rem;
  display: inline-block;
  padding: 0.4em 1.5em;
  cursor: pointer;
  margin-top: 15px;
}
.tcs-container form button:disabled {
  background-color: #ea7f85;
  border: 1px solid #ea7f85;
  cursor: not-allowed;
}
.tcs-container form button:hover {
  background-color: #ff0000;
}
.tcs-container form button:hover:disabled {
  background-color: #ea7f85;
  border: 1px solid #ea7f85;
  cursor: not-allowed;
}
.tcs-container .result {
  margin-bottom: 15px !important;
  padding: 10px;
  display: none;
}

.tracking-result .section {
  background-color: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.4rem;
  margin-bottom: 15px;
  font-size: 14px;
}
.tracking-result .header {
  background-color: #f3f4f6;
  color: #333;
  padding: 5px 10px;
  font-weight: bolder !important;
  font-size: 18px;
}
.tracking-result .body {
  padding: 5px 10px;
}
.tracking-result .body p {
  display: flex;
  margin-bottom: 2px;
}
.tracking-result .body p .label {
  width: 130px;
}
.tracking-result .body p .value {
  font-weight: bold;
}
.tracking-result .body table.history-table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
}
.tracking-result .body table.history-table thead {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background-color: #f3f4f6;
}
.tracking-result .body table.history-table thead th {
  padding: 8px;
  text-align: left;
  color: #333;
  white-space: nowrap;
}
.tracking-result .body table.history-table thead th:nth-child(1) {
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
  border-right: 1px solid #e0e0e0;
}
.tracking-result .body table.history-table thead th:nth-child(2) {
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.tracking-result .body table.history-table tbody td {
  padding: 8px;
}
.tracking-result .body table.history-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.tracking-result .body table.history-table tbody td.device-only {
  display: none;
}

@media only screen and (max-width: 750px) {
  .courier-tracking form {
    width: 100%;
  }
}