#vehicle_table.tr.service-due-no-service {
  background-color: rgb(176, 62, 62);
}

#vehicle_table.tr.service-due-minor {
  background-color: yellow;
}

#vehicle_table.tr.service-due-major {
  background-color: lightcoral;
}
#statusSelector{
  display:flex; flex-direction:column; justify-content:space-between; gap:10px;
}
.content {
  width: 100%;
  background: #fff;
  padding-bottom: 0px;
}
.content .table-container {
  margin: 0 auto;
  border-radius: 8px;
  height: -moz-max-content;
  height: max-content;
  padding-left: 40px;
  padding-right: 40px;
}
.content .table-container .table {
  text-wrap: nowrap;
  overflow-x: auto;
}
.content .table-container .table #commentModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border: 1px solid #ccc;
  width: 400px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--primary-radius);
  border: none;
  box-shadow: var(--box-shadow);
  z-index: 1000;
}
.content .table-container .table #commentModal h4 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.content .table-container .table #commentModal #commentText {
  width: 98.2%;
  height: 60%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 9px;
}
.content .table-container .table #commentModal .btn {
  font-size: var(--primary-font-size);
  border-radius: var(--primary-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 8px;
  color: #ffffff;
  background-color: #414347;
  font-weight: 500;
  cursor: pointer;
  font-size: 13px;
  margin-bottom: 10px;
  margin-top: 0px;
  margin-right: 10px;
}
.content .table-container .table #commentModal .btn:hover {
  box-shadow: var(--shadow-hover);
}
.content .table-container .table #dataTable {
  width: 100%;
  overflow-x: auto;
  border-collapse: separate;
}
.content .table-container .table #dataTable thead .sortable {
  cursor: pointer;
}
.content .table-container .table #dataTable thead tr th {
  border-radius: 0;
}
.content .table-container .table #dataTable thead tr th:first-child {
  border-top-left-radius: 6px;
}
.content .table-container .table #dataTable thead tr th:last-child {
  border-top-right-radius: 6px;
}

#statusFilter {
  padding: 7px 8px;
  background-color: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32), 0px 0px 2px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#reasonFilter {
  padding: 7px 8px;
  background-color: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32), 0px 0px 2px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#statusFilter:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.32), 0 0 3px rgba(0, 0, 0, 0.11), 0 1px 4px rgba(0, 0, 0, 0.12);
}
#reasonFilter:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.32), 0 0 3px rgba(0, 0, 0, 0.11), 0 1px 4px rgba(0, 0, 0, 0.12);
}

#serviceFilter {
    padding: 7px 8px;
    background-color: #ffffff;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32), 0px 0px 2px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
#serviceFilter:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.32), 0 0 3px rgba(0, 0, 0, 0.11), 0 1px 4px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  #statusFilter {
    padding: 7px 0px;
  }
}
@media (max-width: 480px) {
  #statusFilter {
    padding: 7px 0px;
    font-size: 13px;
  }
}
th,
td {
  padding: 13px 12px;
  text-align: left;
  font-size: 16px;
  text-wrap: nowrap;
}

th {
  background-color: #e9e9e9;
  color: #000000;
  font-weight: 500;
}

tbody tr td {
  background-color: #f9f9f9;
}
tbody tr td select {
  padding: 8px 4px;
  border-radius: var(--primary-radius);
  border: none;
  box-shadow: var(--box-shadow);
  font-size: var(--primary-font-size);
}
tbody tr td select:hover {
  box-shadow: var(--shadow-hover);
}
tbody tr td:has(.charge-button) {
  text-align: center;
}
tbody tr td .charge-button {
  font-size: 12px !important;
  padding: 12px 20px !important;
  line-height: 0;
}
tbody tr td button {
  font-size: var(--primary-font-size);
  border-radius: var(--primary-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 8px;
  color: #ffffff;
  background-color: #414347;
  font-weight: 500;
  cursor: pointer;
  padding: 10px;
}
tbody tr td button:hover {
  box-shadow: var(--shadow-hover);
}
tbody tr td:first-child {
  border-bottom-left-radius: 6px;
}
tbody tr td:last-child {
  border-bottom-right-radius: 6px;
}

.top-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.top-bar .createButton-1 {
  display: block;
  font-size: var(--primary-font-size);
  border-radius: var(--primary-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 8px;
  color: #ffffff;
  background-color: #414347;
  font-weight: 500;
  cursor: pointer;
  padding: 10px;
}
.top-bar .createButton-1:hover {
  box-shadow: var(--shadow-hover);
}
.top-bar button {
  display: block;
  font-size: var(--primary-font-size);
  border-radius: var(--primary-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 8px;
  color: #ffffff;
  background-color: #414347;
  font-weight: 500;
  cursor: pointer;
  padding: 10px;
}
.top-bar button:hover {
  box-shadow: var(--shadow-hover);
}
.top-bar input[type=text] {
  padding: 8px 12px;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  border: none;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32), 0px 0px 2px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.08);
}
.top-bar input[type=text]:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.32), 0 0 3px rgba(0, 0, 0, 0.11), 0 1px 4px rgba(0, 0, 0, 0.12);
}
.top-bar .search-bar {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.top-bar .createButton-2 {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 2px;
  padding-bottom: 20px;
}
.pagination a {
  padding: 6px 10px;
  margin: 0 4px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32), 0px 0px 2px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.08);
  font-size: 13.3px;
  color: #000000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.pagination a.active {
  cursor: default;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.32), 0 0 3px rgba(0, 0, 0, 0.11), 0 1px 4px rgba(0, 0, 0, 0.12);
}
.pagination a:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.32), 0 0 3px rgba(0, 0, 0, 0.11), 0 1px 4px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .table-container {
    width: 80%;
    padding: 0 16px;
  }
  .table-container table {
    border-collapse: separate;
  }
  .table-container table th,
  .table-container table td {
    padding: 8px 12px;
    font-size: 13px;
  }
  .button-group button {
    text-wrap: nowrap;
  }
  .top-bar {
    gap: 107px;
    flex-direction: row;
  }
  input[type=text] {
    max-width: 100%;
  }
  .search-bar {
    flex-direction: column;
    gap: 10px;
  }
  .pagination {
    position: absolute;
    width: 80%;
  }
}
@media (max-width: 480px) {
  .menu span {
    font-size: 13px;
  }
  .content .table-container {
    width: 80%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content .table-container table {
    border-collapse: separate;
    overflow-x: auto;
  }
  .content .table-container table th,
  .content .table-container table td {
    padding: 8px 12px;
    font-size: 13px;
  }
  .top-bar {
    gap: 5px;
    display: flex;
    flex-direction: column;
  }
  .top-bar input[type=text] {
    font-size: 13px;
  }
  .top-bar .search-bar {
    gap: 0px;
  }
  .top-bar .search-bar .search-button {
    font-size: 13px;
    padding: 7px 13px;
  }
  .top-bar .createButton-1 {
    display: none;
  }
  .button-group {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
  }
  .button-group .createButton-2 {
    display: block;
    font-size: var(--primary-font-size);
    border-radius: var(--primary-radius);
    box-shadow: var(--box-shadow);
    border: none;
    padding: 8px;
    color: #ffffff;
    background-color: #414347;
    font-weight: 500;
    cursor: pointer;
    font-size: 13px;
  }
  .button-group .createButton-2:hover {
    box-shadow: var(--shadow-hover);
  }
  .button-group button {
    text-wrap: nowrap;
    padding: 7px 13px;
    margin: 0px;
    font-size: 13px;
  }
  th,
  td {
    padding: 6px 8px;
    font-size: 13px;
  }
  .pagination {
    position: absolute;
    width: 80%;
  }
  .pagination a {
    padding: 4px 8px;
    font-size: 13px;
  }
}
tbody tr td {
  background-color: #f9f9f9;
}
tbody tr td select {
  padding: 8px 4px;
  border-radius: var(--primary-radius);
  border: none;
  box-shadow: var(--box-shadow);
  font-size: var(--primary-font-size);
}
tbody tr td select:hover {
  box-shadow: var(--shadow-hover);
}
tbody tr td:has(.charge-button) {
  text-align: center;
}
tbody tr td .charge-button {
  font-size: 12px !important;
  padding: 12px 20px !important;
  line-height: 0;
}
tbody tr td button {
  font-size: var(--primary-font-size);
  border-radius: var(--primary-radius);
  box-shadow: var(--box-shadow);
  border: none;
  height: 32px;
  color: #ffffff;
  background-color: #414347;
  font-weight: 500;
  cursor: pointer;
  padding: 4px;
}
tbody tr td:first-child {
  border-bottom-left-radius: 6px;
}
tbody tr td:last-child {
  border-bottom-right-radius: 6px;
}


.service-due-major {
  background-color: #ffdddd; 
}

.service-due-minor {
  background-color: #fff3cd; 
}

.service-due-no-service {
  background-color: #f8f9fa; 
}


.service-status-due {
  color: red;
  font-weight: bold;
}
/*@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}/*# sourceMappingURL=style.css.map */