/*________________________________*/
/* Basic Setup */
/*________________________________*/

/* Navigation alignment fix */
.navbar-header-align {
  padding-left: 3% !important;
  padding-right: 7% !important;
}

.navbar-header-align .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #fff;
  color: #555;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1 {
  margin: 0;
  font-size: 100%;
  font-weight: 300;
  color: antiquewhite;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-spacing: 5px;
}

.row {
  max-width: 1140px;
  margin: 0 auto;
}

/* Force everything to stay within viewport */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Responsive utilities */
.w-100 {
  width: 100% !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

main {
  padding: 0 10px;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/*________________________________*/
/* Header */
/*________________________________*/
header {
  background-color: darkred;
  height: 200px;
  padding-top: 20px;
  position: relative;
  overflow: hidden;
}

.head-text-box {
  position: absolute;
  width: 90%;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
}

.head-text-box .headertext {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
  font-weight: bold;
  text-align: center !important;
}

.head-text-box .headertext.sub {
  font-size: 0.8em;
  margin-top: -10px;
}

/* Officer Dashboard Layout */
.dashboard-container {
  width: 100%;
  margin-bottom: 1.5rem;
  padding-left: 8px;
  padding-right: 8px;
}

.dashboard-flex {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.dashboard-box-left {
  flex: 1;
  margin-bottom: 1.5rem;
}

.dashboard-box-middle {
  flex: 1;
  margin-bottom: 1.5rem;
}

.dashboard-box-right {
  flex: 1;
  margin-bottom: 1.5rem;
}

.repair-list-scroll {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.dashboard-placeholder {
  min-height: 200px;
}

.dashboard-text-truncate {
  max-width: 200px;
}

/* User name bar styling */
.user-name-bar {
  background-color: #8b0000; /* Darker red than header */
  color: white;
  padding: 8px 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #660000;
  position: relative;
  z-index: 10;
}

.user-name-text {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Ensure navigation appears properly below the user bar */
nav.navbar {
  margin-top: 0;
}

/* Widen dropdown menus for better fit of longer items */
.navbar .dropdown-menu {
  min-width: 16rem;
}

/* Content title styling to work with new layout */
.content_title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #333;
}
}

header img {
  max-width: 100%;
  height: auto;
}

.head-text-box h1 {
  text-shadow: 3px 3px 2px black;
  font-weight: bolder;
  padding: 0.5rem;
  text-align: center;
  margin-top: 0;
}

.logo {
  position: absolute;
  top: 25px;
  left: 15px;
  height: 100px;
  width: auto;
  float: left;
}

.main-nav {
  list-style: none;
}

.main-nav li {
  display: inline-block;
  margin-left: 20px;
}

.main-nav li a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 80%;
}

.main-nav li a:hover {
  font-weight: bold;
}

.main-nav li a:active {
  color: red;
}

/*________________________________*/
/* Dashboard */
/*________________________________*/
.dashboard h1,
.dashboard h2 {
  text-align: center;
  margin: 15px 0;
  color: #000;
  font-weight: bolder;
}

.dashboard h3 {
  background-color: darkred;
  color: antiquewhite;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 2px solid black;
  font-size: 125%;
}

.dashboard h5 {
  text-align: left;
  padding-bottom: 5px;
  border-bottom: 2px solid black;
  margin-bottom: 5px;
  font-size: 100%;
}

.dashboard p {
  padding-top: 5px;
  text-align: left;
  font-size: 90%;
  border-top: 2px solid black;
}

.dashboard ul {
  margin-bottom: 5px;
}

.dashboard li,
.dash-list li {
  list-style: none;
  padding-left: 5px;
  font-size: 80%;
  margin-bottom: 8px;
}

.dash-list {
  min-height: 150px;
}

.box {
  min-height: 20px;
  color: black;
  font-size: 20px;
}

.box p {
  margin-bottom: 0;
}

.box_buttons {
  list-style: none;
  text-align: center;
}

.box_buttons li {
  display: inline-block;
  margin: 10px 0 10px 15px;
  border: 1px solid black;
  border-radius: 5px;
  padding: 0 5px 5px 5px;
}

.box_buttons li a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 60%;
}

.box_buttons li a:active {
  color: red;
}
/*________________________________*/
/* Tables, Buttons, and Utility Components */
/*________________________________*/
table.dreport,
table.tire,
table.tire-form,
table.apparatus {
  width: 100%;
}

table.dreport tr,
table.tire tr,
table.tire-form tr {
  height: 60px;
}

table.dreport tr:nth-child(even),
.List tr:nth-child(odd) {
  background: #ccc;
}

table.dreport tr:nth-child(odd),
.List tr:nth-child(even) {
  background: #fff;
}

table.tire,
table.tire-form {
  border: 5px solid black;
  margin: 0 auto;
  width: 80%;
}

table.tire-form {
  width: 50%;
}

table.tire td,
table.tire-form td,
table.apparatus td {
  text-align: center;
  padding: 6px;
  border: 1px solid #ccc;
}

table.apparatus td {
  width: 50%;
}

table.tire-wrapper {
  width: 50%;
  text-align: center;
}

.tirep {
  text-align: center;
  width: 60px;
}

.btn {
  padding: 0 5px;
  margin: 0 5px;
}

.td_left {
  padding-left: 25px;
}

.td_right {
  width: 600px;
  text-align: right;
}

.itemContent {
  padding: 20px;
  background-color: cornsilk;
  border: 3px solid black;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.itemContent h4 {
  text-align: center;
}

.cta-button {
  display: inline-block;
  background-color: #8a0000;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;
  margin-top: 10px;
}

.cta-button:hover {
  background-color: #980000;
}

/* Footer */
footer {
  color: lightgray;
  margin-left: 20px;
  font-size: 80%;
  word-spacing: 3px;
  letter-spacing: 2px;
}

/* Utility */
.hidden {
  display: none;
}

.inner {
  max-width: 1800px;
  margin: 10px auto;
  padding: 20px;
  background-color: antiquewhite;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.preview-thumb {
  border: 1px solid #ccc;
  padding: 5px;
  background: #f9f9f9;
  display: inline-block;
}

.report-notes {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 0.9em;
  color: #333;
}
/*________________________________*/
/* Forms, Containers, Repairs, Checklist */
/*________________________________*/

.container,
.container-index,
.container-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.container {
  justify-content: center;
}

.container-check-items-list {
  margin: 0 10px;
  max-width: calc(100vw - 20px);
}

.container-index {
  gap: 15px;
  padding: 0 10px;
  margin: 0;
  max-width: calc(100vw - 20px);
}

.container-form,
.container-index-form,
.container-index-actionItems {
  box-sizing: border-box;
  background-color: #eeeeee;
  border: 3px solid #333;
  box-shadow: 0 0 10px #000;
  border-radius: 20px;
  padding: 15px;
  margin-top: 25px;
  max-width: 100%;
  overflow-x: hidden;
}

.container-form {
  flex-direction: column;
  max-width: 100%;
  min-width: 100%;
}

.container-form h1,
.container-form h4,
.container-form h5,
.container-index-form h4,
.container-index-actionItems h4 {
  text-align: center;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.container-form h5 {
  font-size: 100%;
}

.container-form form {
  text-align: center;
  margin-bottom: 10px;
}

.container-index-form {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  margin-bottom: 20px;
}

.container-index-actionItems {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  background-color: #df6464;
  margin-bottom: 20px;
}

.container-index-actionItems table {
  margin: 0 auto 10px;
  width: 100%;
  max-width: 100%;
}

.container-index-actionItems td,
.container-index-actionItems th {
  text-align: center;
}

.container-row,
.repair-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.container-row:nth-child(odd),
.table_rows:nth-child(odd),
.List tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.container-row:nth-child(even),
.table_rows:nth-child(even),
.List tr:nth-child(even) {
  background-color: #ffffff;
}

.repair-row {
  background-color: #eb0f42;
  color: #fff;
  animation: fadeIn 0.3s ease-in-out;
}

.repair-row p {
  text-align: left;
}

.repair-item {
  flex: 0 0 70%;
  display: flex;
  justify-content: space-between;
}

.repair-description,
.repair-details {
  flex: 0 0 30%;
  text-align: center;
}

.box-label.repair {
  flex: 0 0 30%;
  text-align: center;
}

.open-repair-row {
  background-color: #fff7e6;
  border: #6d0326 solid 2px;
}

.open-repair-box {
  border-left: 4px solid #6d0326;
  padding: 0.5rem;
  margin: 0.2rem 0;
}

.open-repair-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
}

.checklist {
  display: flex;
  flex-direction: column;
  width: 75%;
}

.checklist > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.checklist > div:nth-child(odd) {
  background-color: #f2f2f2;
}

.checklist .name {
  width: 30%;
  text-align: right;
  padding-right: 50px;
}

.checklist .action {
  width: 50%;
  display: flex;
  justify-content: space-around;
}

/*________________________________*/
/* .check-item, .morr-*, .modal, and Interactivity */
/*________________________________*/

.check-item,
.morr-item {
  display: flex;
  padding: 10px;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.check-item h3,
.morr-item h3 {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.check-description {
  flex: 0 0 30%;
  text-align: left;
  padding-left: 10px;
  font-weight: bolder;
}

.check-buttons,
.check-data,
.check-description-complete {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 120px;
  font-weight: bolder;
  padding-right: 20px;
}

.check-description-complete {
  padding-left: 20px;
  border: #210feb solid 2px;
}

.check-data {
  border: #eb0f42 solid 2px;
}

.check-data h4,
.check-description-complete h4 {
  justify-content: center;
}

.check-button {
  padding: 5px 10px;
  font-size: 16px;
  font-weight: bolder;
  cursor: pointer;
  min-width: 100px;
  border: 2px solid #000;
  border-radius: 15px;
}

.check-button:hover {
  background-color: red;
  color: #fff;
}

.check-button.active {
  background-color: #007bff;
  color: white;
  border: 1px solid #0056b3;
}

.check-button.selected {
  background-color: #6d0326;
  color: white;
}

.content_title {
  text-align: center;
  font-size: 2em;
  font-weight: bolder;
  margin-bottom: 20px;
  border-top: 2px solid #000;
  padding-top: 10px;
}

.myCheckbox {
  margin-right: 2px;
  padding-left: 5px;
  vertical-align: middle;
  transform: scale(1.5);
  border: 2px solid #000;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.printTable {
  min-width: fit-content;
  max-width: 1200px;
  margin: 25px auto;
}

.printTable-large {
  width: 100%;
  margin: 25px 0;
  border-collapse: collapse;
  table-layout: auto;
}

.table_rows td,
.table_rows th {
  border: 1px solid #000;
  padding: 5px 15px;
}

.List {
  font-size: smaller;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  table-layout: fixed;
}

.List td {
  border: 1px solid #000;
  padding: 15px 8px;
  font-weight: bold;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  vertical-align: top;
  line-height: 1.4;
  min-height: 60px;
}

.List td.ListDescription {
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.List th {
  background-color: #8a0000;
  color: #fff;
  border: 1px solid #000;
  padding: 8px 6px;
  font-weight: bolder;
  text-align: center;
  word-wrap: break-word;
  vertical-align: middle;
}

/* Multi-line cell content */
.cell-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 50px;
  justify-content: flex-start;
  text-align: left;
}

.cell-primary {
  font-weight: bold;
  font-size: 1em;
  color: #333;
  line-height: 1.2;
}

.cell-secondary {
  font-size: 0.85em;
  color: #666;
  font-weight: normal;
  line-height: 1.3;
}

.cell-meta {
  font-size: 0.7em;
  color: #999;
  font-style: italic;
}

/* Description row styling */
.description-row {
  background-color: #f8f9fa;
  border-top: none !important;
}

.description-row td {
  padding: 0.5rem 1rem;
  border-top: 1px solid #e0e0e0;
  font-style: italic;
  color: #666;
  font-size: 0.9em;
}

/* Description text styling */
.description-text {
  font-style: italic;
  color: #555;
  padding-top: 4px;
  border-top: 1px solid #eee;
  margin-top: 4px;
  line-height: 1.3;
}

/* Responsive table wrapper */
.table-responsive {
  width: 100%;
  margin-bottom: 1rem;
}

.table-responsive .List {
  margin-bottom: 0;
  border: 0;
  width: 100%;
}

/* Responsive utilities for hiding columns on smaller screens */
.d-none-sm {
  display: none;
}

@media (min-width: 768px) {
  .d-none-sm {
    display: table-cell;
  }
}

.d-none-md {
  display: none;
}

@media (min-width: 992px) {
  .d-none-md {
    display: table-cell;
  }
}

/* Badge styles for status indicators */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.bg-success {
  background-color: #198754 !important;
  color: white !important;
}

.bg-warning {
  background-color: #ffc107 !important;
  color: black !important;
}

.bg-danger {
  background-color: #dc3545 !important;
  color: white !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
  color: black !important;
}

/* Compact table styles for better mobile experience */
.List-compact {
  font-size: 0.8em;
}

.List-compact td,
.List-compact th {
  padding: 4px 2px;
  font-size: 0.75em;
}

/* Card-based layout for mobile - no horizontal scrolling */
.table-card-layout {
  display: none;
}

@media (max-width: 767px) {
  .table-responsive .List {
    display: none;
  }
  
  .table-card-layout {
    display: block;
    width: 100%;
  }
  
  .table-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .table-card-header {
    background-color: #8a0000;
    color: white;
    padding: 10px;
    margin: -15px -15px 15px -15px;
    border-radius: 7px 7px 0 0;
    font-weight: bold;
    text-align: center;
  }
  
  .table-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  
  .table-card-row:last-child {
    border-bottom: none;
  }
  
  .table-card-label {
    font-weight: bold;
    color: #8a0000;
    flex: 0 0 35%;
  }
  
  .table-card-value {
    flex: 1;
    text-align: right;
    word-wrap: break-word;
  }
  
  .table-card-value a {
    color: #0066cc;
    text-decoration: none;
  }
  
  .table-card-value a:hover {
    text-decoration: underline;
  }
}

/* Morr styles */
.morr-item {
  background-color: #ccc;
  border: 2px solid #000;
  border-radius: 10px;
}

.morr-label {
  flex: 0 0 50%;
  text-align: right;
  padding-right: 10px;
  font-weight: bolder;
  width: 500px;
}

.morr-textbox {
  flex: 0 0 50%;
  display: flex;
  justify-content: left;
  gap: 10px;
  padding-left: 20px;
}

.morr-multiText {
  flex: 0 0 100%;
  justify-content: left;
  padding: 5px 20px;
  text-wrap: wrap;
  font-weight: bold;
  background-color: #ccc;
  border: 2px solid #000;
  border-radius: 10px;
}

.morr-multiText textarea {
  width: 100%;
  height: 100px;
  padding: 5px;
  font-size: 16px;
  font-weight: bolder;
  border: 2px solid #000;
  border-radius: 10px;
}

.morr_text_input {
  width: 75%;
  border: 2px solid #000;
  border-radius: 10px;
  padding-left: 25px;
  font-weight: bold;
}

.morrButton {
  width: 100%;
  text-align: center;
}

/* Drag & handle */
.handle {
  text-align: center;
  font-size: 1.3em;
  width: 30px;
  user-select: none;
}

tr.dragging {
  background-color: #f0f8ff;
  opacity: 0.6;
}

tr:hover {
  cursor: default;
}

.handle:hover {
  cursor: move;
}

/*________________________________*/
/*  Flash messages, animations, and titlebar layout */
/*________________________________*/

@keyframes slideIn {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flash {
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  width: 98%;
  display: flex;
  animation: slideIn 0.1s ease-in-out 2 forwards;
  animation-timing-function: cubic-bezier(0.01, 1.68, 0.58, 1);
}

.flash + .flash {
  animation-delay: 0.55s;
}

.flash + .flash + .flash {
  animation-delay: 0.6s;
}

.flash__text {
  flex: 1;
}

.flash__remove {
  background: none;
  border: 0;
  margin-left: 50px;
  font-size: 200%;
}

.flash__remove:hover {
  color: yellow;
}

.flash:after {
  content: "";
  display: block;
  background: white;
  position: absolute;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  top: 8px;
  left: 8px;
  z-index: -1;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.flash--success {
  background: linear-gradient(
    135deg,
    rgba(210, 255, 82, 1) 0%,
    rgba(145, 232, 66, 1) 100%
  );
}

.flash--error {
  background: linear-gradient(
    20deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(200, 0, 0, 1) 100%
  );
}

.flash--info {
  background: linear-gradient(
    35deg,
    rgba(241, 231, 103, 1) 0%,
    rgba(254, 182, 69, 1) 100%
  );
}

.flash p {
  margin: 0;
}

/* Titlebar layout */
.titlebar {
  display: flex;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.titlebar_left,
.titlebar_center,
.titlebar_right {
  flex: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.titlebar_left {
  justify-content: flex-start;
  text-align: left;
}

.titlebar_center {
  justify-content: center;
  text-align: center;
}

.titlebar_right {
  justify-content: flex-end;
  text-align: right;
}

/* Unit toggle UI */
.unit-checkbox {
  font-size: 0.9em;
  gap: 4px;
}

.unit-toggle {
  margin-right: 4px;
  cursor: pointer;
}

.modal.hidden {
  display: none !important;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.modal-content {
  width: 100%;
  max-width: 540px;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: max-width 0.3s ease;
}
.custom-modal {
  width: 100% !important;
  max-width: 1140px !important;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  margin: 2rem auto;
  transition: max-width 0.3s ease;
  overflow-y: auto;
  max-height: 90vh;
}
#newRepairModal .modal-content#repairModalBox {
  width: 100% !important;
  max-width: 1140px !important;
}
#repairModalBox {
  width: 100% !important;
  max-width: 1140px !important;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  max-height: 90vh;
  display: block !important;
}
#repairModalBox {
  width: unset !important;
  max-width: 1140px !important;
}

@media (min-width: 768px) {
  .modal-content {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .modal-content {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .modal-content {
    max-width: 1140px;
  }
}

#newRepairModal .modal-content {
  width: 100% !important;
  max-width: 1140px !important;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: max-width 0.3s ease;
}

/* Optional: Keep height scrollable */
#newRepairModal .modal-content {
  max-height: 90vh;
  overflow-y: auto;
}
