:root {
  --lightGray: #F0F2F4;
  --darkGray: #D9D9D9;
  --orange: #F28F00;
  --black: #575758;
}

body {
  margin: 4rem auto;
}

table > * {
  color: #575758 !important;
  cursor: default;
}

.title-page {
  color: var(--orange);
  text-align: center;
  font-size: 26px;
  margin: auto;
  display: block;
  font-weight: 700;
}

.content-to-equipment-table {
  width: 80%;
  margin: 2rem auto 0 auto;
  overflow: auto;
}

.table.general-equipment-table {
  border: 0;
}

.general-equipment-table tbody:nth-child(even) {
  background-color: var(--lightGray);
}

.general-equipment-table tbody:nth-child(odd) {
  background-color: var(--darkGray);
}

.table tbody + tbody {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.table th, .table td {
  border: none;
}

.table thead th,
.table tbody tr td:not(.table tbody tr td:first-child):not(.table tbody tr td:last-child),
.table tbody .main-tr {
  border-bottom: 1px solid var(--black);
}

.anchor-detail, .anchor-report {
  cursor: pointer;
  text-decoration: underline;
  width: 200px;
}

.modal-content {
  border-radius: 0;
  border: 0;
}

.modal-dialog {
  top: calc(100vh - 568px);
}

.modal-header {
  height: 60px;
  padding: 0 2rem;
  align-items: center;
}

.modal-header .info {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.modal-content .info div {
  display: flex;
  align-items: center;
}

.modal-content .info-txt {
  font-weight: 700;
  font-size: 20px;
  margin-right: 0.75rem;
  margin-bottom: 0;
  color: var(--black);
}

.modal-content .info-data {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 0;
  color: var(--black);
}

.modal-content .export-to-excel {
  width: fit-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--darkGray);
  padding: 0 1.74rem;

  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  padding: 0 1.74rem;
}

.modal-body {
  min-height: 480px;
  padding: 1.5rem 2rem;
}

.modal-body .content-to-specific-customer-table {
  width: 100%;
  overflow: auto;
  margin: 0 auto;
}

.modal-body .specific-customer {
  border: 0;
}

.specific-customer .th-header{
  text-align: center;
  border-left: .5rem solid white;
}

.content-to-specific-customer-table .specific-customer th {
  vertical-align: inherit;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.content-to-specific-customer-table .specific-customer td {
  vertical-align: middle;
  border-bottom: 1px solid var(--black);
}

