/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root {
  --primary-blue-color: #063692;
}

.btn-primary {
  background: var(--primary-blue-color) !important;
  border: unset;
  color: #fff;
}

.btn-danger {
  background: #dc3545 !important;
}


.btn-sm {
  padding: 0.25rem 0.5rem !important;
  font-size: 0.875rem !important;
  border-radius: var(--bs-border-radius-sm);
}

.btn-outline-secondary {
  background-color: transparent !important;
  border: 1px solid var(--primary-blue-color) !important;
  color: var(--primary-blue-color) !important;
}

.btn-success {
  background-color: #28a745 !important;
  border-color: transparent !important;
  color: #fff !important;
}

.btn-outline-success {
  background-color: transparent !important;
  border: 1px solid #28a745 !important;
  color: #28a745 !important;
}

.btn-outline-secondar:hover {
  background-color: var(--primary-blue-color) !important;
  color: #fff !important;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

input.error,
select.error,
textarea.error {
  border-color: #dc3545;
}


/* steps */
.form-step {
  display: none;
  transition: all 0.3s ease;
}

.form-step.active {
  display: block;
}

/* headings */
.form-step h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* inputs & selects */
.form-step .form-control {
  font-size: 15px;
  border-radius: 8px;
  padding: 7px 9px;
  border: 1px solid #ddd;
  transition: 0.3s;
}



.form-step .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.2);
}

/* buttons */
.btn {
  border-radius: 8px !important;
  padding: 10px 25px !important;
  font-weight: 500 !important;
}

.btn-primary {
  background: var(--primary-blue-color) !important;
  border-color: transparent !important;
  color: #fff;
}

/* error messages */
input.error,
select.error,
textarea.error {
  border-color: #dc3545;
}

.error-message {
  display: block;
  margin-top: 5px;
  font-size: 0.875rem;
}

/* password strength */
.password-strength {
  font-size: 0.875rem;
  margin-top: 5px;
  font-weight: 600;
}

/* checkbox styling */
.form-check-label {
  font-weight: 500;
}

/* spacing for step navigation */
.form-step .btn {
  margin-right: 10px;
  margin-top: 5px;
  padding: 8px 32px;
  border: none;
  border-radius: 30px;
}

/* responsive tweaks */
@media (max-width: 576px) {
  #motormovaQuoteForm {
    padding: 20px;
  }
}

.form-label {
  font-size: 15px;
}

/* .mm-dashboard {
  min-height: 100vh;
  background: #f5f7fb;
  font-family: system-ui, sans-serif;
} */

.mm-sidebar {
  width: 260px;
  background: #111827;
  color: #fff;
  transition: width 0.3s ease;
}

.mm-sidebar.collapsed {
  width: 80px;
}

.mm-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-size: 18px;
}

.mm-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mm-menu li a {
  display: block;
  padding: 14px 20px;
  color: #cbd5e1;
  text-decoration: none;
}

.mm-menu li a:hover {
  background: #1f2933;
  color: #fff;
}

.mm-menu .logout a {
  color: #f87171;
}

.mm-sidebar.collapsed .mm-menu li a {
  text-align: center;
  padding: 14px 10px;
  font-size: 12px;
}

.mm-sidebar.collapsed strong {
  display: none;
}

.mm-content {
  padding: 24px;
}

.mm-card {
  padding: 20px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.mm-card h6 {
  color: #6b7280;
  margin-bottom: 8px;
}

.mm-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.mm-loading-dots {
  display: flex;
  gap: 8px;
}

.mm-loading-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0d6efd;
  animation: mm-bounce 1s infinite ease-in-out;
  opacity: 0.6;
}

.mm-loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.mm-loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes mm-bounce {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .mm-sidebar {
    position: fixed;
    height: 100%;
    z-index: 1000;
  }
}


.mm-dashboard-header h3 {
  font-weight: 600;
}

.mm-stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: all .3s ease;
}

.mm-stat-card:hover {
  transform: translateY(-4px);
}

.mm-stat-label {
  font-size: 13px;
  color: #6c757d;
}

.mm-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.mm-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.mm-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f1f1f1;
}

.mm-list-item:last-child {
  border-bottom: none;
}

.mm-list-item p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
}

.mm-status {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.mm-status.open {
  background: #e7f1ff;
  color: #0d6efd;
}

.mm-status.quote_requested {
  background: #d1e7dd;
  color: #0f5132;
}

.mm-status.quoted {
  background: #fff3cd;
  color: #856404;
}

.mm-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.mm-status.accepted {
  background: #d1fae5;
  color: #065f46;
}

.mm-status.in_transit {
  background: #dbeafe;
  color: #1e40af;
}

.mm-status.delivered {
  background: #d1fae5;
  color: #065f46;
}

.mm-status.cancelled {
  background: #f8d7da;
  color: #842029;
}

.mm-status.shipping {
  background: #fff3cd;
  color: #856404;
}

.mm-status.delayed {
  background: #fde2e1;
  color: #dc3545;
}

.mm-status.delivered {
  background: #e6f4ea;
  color: #198754;
}

.mm-badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 50px;
}

.mm-badge-primary {
  background: #e7f1ff;
  color: #0d6efd;
}

.mm-badge-warning {
  background: #fff3cd;
  color: #856404;
}

.mm-timeline-item {
  padding: 14px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.mm-timeline-item span {
  font-size: 12px;
  font-weight: 600;
}

.mm-link {
  font-size: 14px;
  text-decoration: none;
}

.mm-job-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
  transition: all .3s ease;
  height: 100%;
}

.mm-job-card:hover {
  transform: translateY(-5px);
}

.mm-job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mm-job-type {
  font-size: 13px;
  font-weight: 600;
  color: #0d6efd;
}

.mm-job-route {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mm-job-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 15px;
}

.mm-job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mm-job-footer p {
  margin: 0;
  font-weight: 600;
}

.mm-job-actions button {
  margin-left: 8px;
}

.mm-pagination .page-link {
  border-radius: 10px;
  padding: 8px 14px;
  color: #212529;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.mm-pagination .page-item.active .page-link {
  background: #0d6efd;
  color: #fff;
}

.mm-pagination .page-item.disabled .page-link {
  opacity: .5;
  pointer-events: none;
}


.mm-modal {
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
}

.mm-job-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.mm-job-detail-grid label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 2px;
}

.brief_desc {
  margin-top: 15px;
}

.brief_desc label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 2px;
}

.mm-job-detail-grid p {
  font-weight: 600;
  margin: 0;
}

.mm-quote-card {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .07);
  transition: all .3s ease;
  height: 100%;
}

.mm-quote-card:hover {
  transform: translateY(-6px);
}

.mm-quote-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mm-quote-price {
  font-size: 22px;
  font-weight: 700;
}

.mm-route {
  font-weight: 600;
  margin-bottom: 10px;
}

.mm-quote-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 18px;
}

.mm-status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Status styles */
.mm-status-badge.pending {
  background: #fff3cd;
  color: #856404;
}

.mm-status-badge.accepted {
  background: #d1e7dd;
  color: #0f5132;
}

.mm-status-badge.quote_requested {
  background: #dbeafe;
  color: #1e40af;
}

.mm-status-badge.expired {
  background: #f8d7da;
  color: #842029;
}

.mm-quote-card.accepted {
  border-left: 4px solid #198754;
}

.mm-quote-card.pending {
  border-left: 4px solid #ffc107;
}

.mm-quote-card.quote_requested {
  border-left: 4px solid #0d6efd;
}

.mm-quote-card.expired {
  opacity: .6;
  border-left: 4px solid #dc3545;
}

.mm-quote-footer {
  text-align: right;
}


.mm-modal {
  border-radius: 16px;
  border: none;
}

.mm-card {
  background: #f9fafb;
  border-radius: 14px;
  padding: 18px;
}

.mm-card h6 {
  font-weight: 600;
  margin-bottom: 12px;
}

.mm-card.highlight {
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  border: 1px solid #dbe6ff;
}

.mm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mm-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.mm-list strong {
  color: #555;
  font-weight: 500;
}

.badge.pending {
  background: #fff3cd;
  color: #856404;
}

.badge.accepted {
  background: #d1fae5;
  color: #065f46;
}

.badge.rejected {
  background: #fee2e2;
  color: #991b1b;
}


.active-job-card {
  background: #ffffff;
  border-left: 4px solid #4f46e5;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-transit {
  background: #e0f2fe;
  color: #0369a1;
}

.status-delayed {
  background: #fee2e2;
  color: #991b1b;
}

.job-route {
  position: relative;
  padding-left: 20px;
}

.route-point {
  display: flex;
  gap: 12px;
}

.route-line {
  width: 2px;
  height: 30px;
  background: #e5e7eb;
  margin-left: 6px;
  margin-bottom: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
}

.dot.pickup {
  background: #10b981;
}

.dot.delivery {
  background: #3b82f6;
}

.job-meta span {
  margin-right: 12px;
  font-size: 14px;
  color: #374151;
}

.completed-job-card {
  background: #ffffff;
  border-left: 4px solid #10b981;
}

.status-completed {
  background: #dcfce7;
  color: #166534;
}

.rating {
  font-size: 14px;
  color: #f59e0b;
}

.my-info-wrapper {
  max-width: 900px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
}

.profile-card {
  padding: 20px;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h6 {
  margin: 0;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-grid label {
  font-size: 12px;
  color: #64748b;
}

.info-grid p {
  margin: 0;
  font-weight: 500;
}

.badge-verified {
  background: #dcfce7;
  color: #166534;
}

.badge-rating {
  background: #fef3c7;
  color: #92400e;
}

.service-chip {
  display: inline-block;
  padding: 6px 12px;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 8px;
  margin-bottom: 6px;
}

.motormova-myinfo {
  padding: 30px 40px;
}

.page-header h4 {
  font-weight: 600;
}

.mm-card {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.mm-card .card-header {
  background: transparent;
  border-bottom: 1px solid #f1f5f9;
  padding: 18px 24px;
}

.mm-card .card-body {
  padding: 24px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.form-select {
  border-radius: 10px;
  height: 46px;
}

.mm-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.sticky-save {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
  text-align: right;
}

.mm-my-account .mm-account-hero {
  background: linear-gradient(135deg, #0f766e 0%, #0e7490 100%);
  color: #f8fafc;
}

.mm-my-account .mm-account-hero .text-muted {
  color: rgba(241, 245, 249, 0.88) !important;
}

.mm-my-account .mm-account-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.mm-my-account .mm-account-badge {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.mm-my-account .mm-account-stat {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px;
  min-height: 88px;
}

.mm-my-account .mm-account-stat .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(241, 245, 249, 0.86);
  margin-bottom: 4px;
}

.mm-my-account .mm-account-stat .value {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  word-break: break-word;
}

@media (max-width: 767.98px) {
  .mm-my-account .mm-account-stat {
    min-height: 72px;
  }

  .mm-my-account .mm-account-avatar {
    width: 72px;
    height: 72px;
  }
}

/* Customer Dashboard Styles */
.btn {
  text-decoration: none !important;
  border-radius: 8px;
}

.mm-dashboard-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.mm-dashboard-header p {
  font-size: 15px;
}

.mm-nav-pills {
  background: #ffffff;
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  gap: 6px;
}

.mm-nav-pills .nav-link {
  border-radius: 12px;
  padding: 10px 20px;
  color: #6b7280;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.mm-nav-pills .nav-link:hover {
  background: #f3f4f6;
  color: #374151;
}

.mm-nav-pills .nav-link.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.mm-stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.mm-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.mm-stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-stat-label {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mm-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.mm-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafbfc;
}

.mm-shipment-item {
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.mm-shipment-item:hover {
  background: #f9fafb;
}

.mm-shipment-item:last-child {
  border-bottom: none;
}

.mm-shipment-icon {
  width: 56px;
  height: 56px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mm-status-badge.status-transit {
  background: #dbeafe;
  color: #1e40af;
}

.mm-status-badge.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.mm-status-badge.status-delivered {
  background: #d1fae5;
  color: #065f46;
}

.mm-status-badge.status-delayed {
  background: #fee2e2;
  color: #991b1b;
}

.mm-quote-mini-item {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.mm-quote-mini-item:hover {
  background: #f9fafb;
}

.mm-quote-mini-item:last-child {
  border-bottom: none;
}

.mm-link {
  text-decoration: none !important;
  color: #667eea;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}

.mm-link:hover {
  color: #764ba2;
  text-decoration: none;
}

.progress {
  background: #e5e7eb;
  border-radius: 10px;
}

.progress-bar {
  border-radius: 10px;
  transition: width 0.6s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mm-customer-dashboard {
    padding: 16px;
  }

  .mm-dashboard-header h3 {
    font-size: 22px;
  }

  .mm-nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mm-nav-pills .nav-link {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 14px;
  }

  .mm-stat-card {
    margin-bottom: 16px;
  }

  .mm-shipment-item {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .mm-nav-pills .nav-link i {
    margin-right: 0 !important;
  }

  .mm-nav-pills .nav-link {
    font-size: 0;
  }

  .mm-nav-pills .nav-link i {
    font-size: 16px;
  }
}


/* Bookings Table */
.mm-bookings-table {
  font-size: 14px;
}

.mm-bookings-table thead {
  background: #f8f9fa;
  border-bottom: 2px solid #e5e7eb;
}

.mm-bookings-table thead th {
  font-weight: 600;
  color: #374151;
  padding: 16px 12px;
  text-transform: capitalize;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.mm-bookings-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.mm-bookings-table tbody tr:hover {
  background: #f9fafb;
}

.mm-bookings-table tbody td {
  padding: 14px 12px;
  vertical-align: middle;
  color: #1f2937;
}

.mm-bookings-table .booking-id {
  font-weight: 600;
  color: #667eea;
}

.mm-booking-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mm-booking-status.returned {
  background: #e5e7eb;
  color: #374151;
}

.mm-booking-status.ongoing {
  background: #dbeafe;
  color: #1e40af;
}

.mm-booking-status.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.mm-booking-status.paid {
  background: #d1fae5;
  color: #065f46;
}

.mm-booking-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.mm-payment-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.mm-payment-badge.paid {
  background: #d1fae5;
  color: #065f46;
}

.mm-payment-badge.pending {
  background: #fef3c7;
  color: #92400e;
}

.mm-driver-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.mm-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.mm-card-header h5 {
  margin: 0;
  font-weight: 600;
  color: #1f2937;
}

@media (max-width: 1024px) {
  .mm-bookings-table {
    font-size: 12px;
  }

  .mm-bookings-table thead th,
  .mm-bookings-table tbody td {
    padding: 12px 8px;
  }

  .mm-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.mm-driver-indicator {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
}

.mm-driver-indicator.has-driver {
  border-color: #34d399;
  background: linear-gradient(135deg, #34d399, #10b981);
}

.mm-driver-indicator.no-driver {
  border-color: #d1d5db;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.address-title {
  font-size: 18px;
  white-space: nowrap;
  /* Prevent line break */
  overflow: hidden;
  /* Hide overflow */
  text-overflow: ellipsis;
  /* Show ... */
}

.job-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.job-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.job-card-header {
  padding: 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.job-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-card-icon i {
  font-size: 36px;
  color: #9ca3af;
}

.job-card-icon svg {
  width: 36px;
}

.job-card-content {
  flex: 1;
}

.job-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.job-card-meta {
  font-size: 14px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-card-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  color: #d1d5db;
}

.job-card-action {
  flex-shrink: 0;
}

.manage-btn {
  background-color: #eef2ff;
  color: #4f46e5;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.manage-btn:hover {
  background-color: #e0e7ff;
  color: #4f46e5;
  text-decoration: none;
}

.job-card-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.job-detail {
  display: flex;
  flex-direction: column;
}

.job-detail-label {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 500;
}

.job-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

/* Responsive Design */
@media (max-width: 768px) {
  .job-card-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }

  .job-card-action {
    width: 100%;
  }

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

  .job-card-body {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .job-detail {
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
  }

  .job-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

#motormova-quote-response .alert-heading {
  color: #0a3622 !important;
}


.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.btn-transparent {
  background: transparent !important;
}

.btn-transparent svg {
  color: #212529 !important;
}

.btn-outline-danger {
  background-color: transparent !important;
  border: 1px solid #dc3545 !important;
  color: #dc3545 !important;
}

.btn-light {
  background: #f8f9fa !important;
  border-color: transparent !important;
  color: #212529 !important;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  /* For older browsers */
  appearance: none;
  /* Standard property */
  display: none;
  /* Ensures it is fully hidden */
}

/* For Internet Explorer/Edge legacy */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.nav.collapse .nav-link {
  font-size: 14px;
}

.btn-extra-sm {
  padding: 5px 10px !important;
  font-size: 13px !important;
}