.product-form-section {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-content: center;
  margin-bottom : 10px;
}

.product-form-section label {
  min-width: 110px;
  background: var(--motix-primary-color);
  line-height: normal;
  height: 40px;
  line-height: 40px;
  color: #ffff;
  padding: 0 10px;
  font-size: 14px;
}

.product-form-section input {
  width: calc(100% - 110px);
}

p.price {
  /*color: red !important;*/
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
}

p.price del{
  /*color: red !important;*/
  font-size: 13px !important;
}

span.signup-fee {
  margin-top: 5px;
}


/* Overlay */
.servicepopup-overlay {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

/* Popup content */
.servicepopup-overlay  .popup-content {
  background: #fff;
  width: 50%;
  max-width: 90%;
  margin: 100px auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.servicepopup-overlay  .popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* Services list */
.servicepopup-overlay  .popup-content ul {
  list-style: none;
  padding: 0;
}

.servicepopup-overlay  .popup-content ul li {
  margin: 8px 0;
}

/* Buttons */
.servicepopup-overlay  .add-services-btn, .assign-services-btn {
  background: #0073aa;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.add-services-btn:hover, .assign-services-btn:hover {
  background: #005a87;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}


/* ===== My Truck Dashboard Layout ===== */
.my-truck-dashboard {
  display: flex;
  min-height: 100vh;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ===== Sidebar ===== */
.dashboard-sidebar {
  width: 250px;
  background-color: #e22834;
  color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-sidebar h4 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.dashboard-sidebar p {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
}

.dashboard-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-sidebar ul li {
  margin-bottom: 10px;
}

.dashboard-sidebar a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.dashboard-sidebar a:hover,
.dashboard-sidebar a.active {
  background-color: #fff;
  color: #e22834;
}

/* ===== Main Content ===== */
.dashboard-content {
  flex: 1;
  background-color: #f5f6fa;
  padding: 40px;
}

.dashboard-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dashboard-card h3 {
  text-align: center;
  margin: 10px 0;
  font-size: 24px;
  color: #333;
}

.dashboard-card h4 {
  text-align: center;
  margin: 15px 0;
  font-size: 20px;
  color: #333;
}

.dashboard-card p {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
}

/* ===== Tables ===== */
.truck-table,
.visit-table,
.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.truck-table th,
.truck-table td,
.visit-table th,
.visit-table td,
.services-table th,
.services-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: left;
}

.truck-table th,
.visit-table th,
.services-table th {
  background-color: #e22834;
  color: #fff;
  font-weight: 600;
}

.truck-table tr:nth-child(even),
.visit-table tr:nth-child(even),
.services-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.truck-table tr:hover,
.visit-table tr:hover,
.services-table tr:hover {
  background-color: #f1f1f1;
}

.truck-table td,
.visit-table td,
.services-table td {
  color: #333;
  font-size: 14px;
}

.no-trucks {
  text-align: center;
  padding: 20px;
  color: #555;
  font-weight: 500;
}

.visit-btn,
.edit-btn {
  background-color: #e22834;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease;
}
.visit-btn:hover,
.edit-btn:hover {
  background-color: #c51d29;
}

/* ===== Responsive ===== */
@media(max-width:768px){
  .my-truck-dashboard{flex-direction:column;}
  .dashboard-sidebar{width:100%;min-height:auto;flex-direction:row;overflow-x:auto;}
  .dashboard-sidebar ul{display:flex;gap:10px;}
  .dashboard-content{padding:20px;}
  .truck-table th, .truck-table td,
  .visit-table th, .visit-table td,
  .services-table th, .services-table td{font-size:12px;padding:6px 8px;}
}
/* Overlay */
.tt-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  overflow-y: auto;
}

/* Popup content */
.tt-popup-content {
  background: #fff;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Close button */
.tt-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Service list */
.tt-popup-content ul {
  list-style: none;
  padding-left: 0;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.tt-popup-content li {
  margin-bottom: 5px;
}
.visit-services-table {
  width: 100%;
  border-collapse: collapse;
}

.visit-services-table th,
.visit-services-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.visit-services-table th {
  background: #f7f7f7;
  font-weight: 600;
}

.visit-services-table td {
  color: #222;
}

.visit-services-table input[type=checkbox]:checked {
  accent-color: #0044cc; /* Dark blue tick */
}

.tt-mytruck-breadcrumb {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

.tt-mytruck-breadcrumb {
  margin: 16px 0px;
}

.tt-mytruck-breadcrumb .breadcrumb-links {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  padding-bottom: 20px;
}

.tt-mytruck-breadcrumb .breadcrumb-box {
  display: flex;
  align-items: center;
}

.tt-mytruck-breadcrumb li {
  list-style: none;
}

.tt-mytruck-breadcrumb .breadcrumb-link {
  color: #9ca3af;
}

.tt-mytruck-breadcrumb .breadcrumb-box:hover > *:not(.breadcrumb-icon) {
  color: #e22834;
}

.tt-mytruck-breadcrumb  span.breadcrumb-text.active{
  color: #e22834;
  font-size: 18px;
}

.tt-mytruck-breadcrumb .breadcrumb-icon,
.tt-mytruck-breadcrumb .breadcrumb-icon-home {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
}

.tt-mytruck-breadcrumb .breadcrumb-text {
  margin-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #6b7280;
}

.tt-mytruck-breadcrumb  li::marker {
  color: #e2283400;
}
.atd-table {
    width: 100%;
    border-collapse: collapse;
}
.atd-table th, .atd-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}
.atd-pagination {
    margin-top: 12px;
    text-align: center;
}
.pg-btn {
    padding: 6px 12px;
    margin: 0 4px;
    border-radius: 4px;
    border: 1px solid #2271b1;
    background: #fff;
    color: #2271b1;
    cursor: pointer;
}
.pg-btn.active {
    background: #2271b1;
    color: #fff;
}
.atd-pagination {
    text-align: center;
    margin-top: 15px;
}

.pg-btn {
    padding: 8px 14px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    margin: 0 6px;
}

.pg-btn:hover {
    background: #e6e6e6;
}

.term-tires span.selection {
    display: none;
}

.term-tires section#woocommerce_product_tag_cloud-1{
 display: none;
}

.tech-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
 
.tech-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
}
 
.tech-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
 
.tech-field label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
 
.tech-field input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}