.b4c-ride-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.b4c-ride-table th, .b4c-ride-table td {
  padding: 0.75em 1em;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.b4c-ride-table th {
  background: #f8f8f8;
  color: #3aaf4c;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.b4c-ride-table tr:last-child td {
  border-bottom: none;
}

.b4c-ride-action {
  background: #3aaf4c;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5em 1.2em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-right: 0.5em;
}

.b4c-ride-action:hover:not(:disabled) {
  background: #2e8c3a;
}

.b4c-ride-action-disabled,
.b4c-ride-action:disabled {
  background: #cccccc;
  color: #888;
  cursor: not-allowed;
}

.b4c-ride-msg {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.98em;
  vertical-align: middle;
}

.b4c-ride-msg-success {
  color: #3aaf4c;
}

.b4c-ride-msg-warning {
  color: #e6a700;
}

.b4c-ride-msg-info {
  color: #0073aa;
}

.b4c-ride-msg-error {
  color: #d63638;
}

/* Dashboard Styles */
.b4c-dashboard-container {
  max-width: 1400px;
  margin: 0;
  padding: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Dashboard Filters */
.b4c-dashboard-filters {
  background: white;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.b4c-dashboard-filters h2 {
  margin: 0 0 20px 0;
  color: #2c3e50;
  font-size: 24px;
}

.filter-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filter-row:last-child {
  margin-bottom: 0;
}

.filter-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
.filter-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #2c3e50;
}
.filter-group input, .filter-group select {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.filter-group input:focus, .filter-group select:focus {
  border-color: #3498db;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
          box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  width: auto;
  margin-right: 8px;
}

.filter-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* Dashboard Stats */
.dashboard-stats {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.stat-card .stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 5px;
}
.stat-card .stat-label {
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Orders Table */
.orders-table-container {
  background: white;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}
.orders-table th {
  background: #f8f9fa;
  padding: 15px 12px;
  text-align: left;
  font-weight: 600;
  color: #2c3e50;
  border-bottom: 2px solid #e9ecef;
  font-size: 14px;
}
.orders-table td {
  padding: 12px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: top;
  font-size: 14px;
}
.orders-table .order-row {
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.orders-table .order-row:hover {
  background-color: #f8f9fa;
}

/* Status Badges */
.status-badge, .payment-badge, .badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.status-ongoing {
  background: #d1ecf1;
  color: #0c5460;
}

.status-completed {
  background: #d4edda;
  color: #155724;
}

.payment-processing {
  background: #e7f3ff;
  color: #0066cc;
}

.payment-completed {
  background: #d4edda;
  color: #155724;
}

.payment-cancelled, .payment-refunded {
  background: #f8d7da;
  color: #721c24;
}

.badge.lockout {
  background: #f8d7da;
  color: #721c24;
}

/* Loading States */
.loading-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
}
.loading-indicator .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-right: 10px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.no-orders-message {
  padding: 40px;
  text-align: center;
  color: #666;
}

/* Pagination */
.pagination-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.pagination-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.pagination-btn {
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  background: white;
  color: #495057;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pagination-btn:hover {
  background: #e9ecef;
}
.pagination-btn.active {
  background: #3498db;
  color: white;
  border-color: #3498db;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 8px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}
.modal-header h3 {
  margin: 0;
  color: #2c3e50;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

/* Order Detail Styles */
.order-detail-container .order-detail-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.order-detail-container .order-detail-header .order-info h2 {
  margin: 0 0 10px 0;
  color: #2c3e50;
}
.order-detail-container .order-detail-header .order-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.order-detail-container .order-detail-header .order-meta span {
  font-size: 14px;
  color: #666;
}
.order-detail-container .status-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail-section {
  margin-bottom: 30px;
}
.detail-section h3 {
  margin: 0 0 15px 0;
  color: #2c3e50;
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
}

/* Customer Info */
.customer-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr 20px auto;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.customer-avatar .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.customer-details h4 {
  margin: 0 0 10px 0;
  color: #2c3e50;
}
.customer-details p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

/* Customer Notes */
.customer-notes {
  min-width: 300px;
}
.customer-notes h5 {
  margin: 0 0 10px 0;
  color: #2c3e50;
}

.notes-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 10px;
}

.note-item {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 4px;
  border-left: 4px solid #ddd;
}
.note-item.note-trustworthy {
  border-left-color: #28a745;
  background: #f8fff9;
}
.note-item.note-issue, .note-item.note-warning {
  border-left-color: #dc3545;
  background: #fff8f8;
}
.note-item.note-general {
  border-left-color: #17a2b8;
  background: #f8fcff;
}

.note-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #666;
}
.note-header .note-category {
  font-weight: 600;
  text-transform: uppercase;
}

.note-text {
  font-size: 14px;
  color: #333;
}

.add-note-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.add-note-form select, .add-note-form textarea {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 8px;
}
.add-note-form select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.add-note-form textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
  min-height: 60px;
  resize: vertical;
}

/* Bike Control Panel */
.rental-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.bike-control-panel h5 {
  margin: 0 0 15px 0;
  color: #2c3e50;
}

.control-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bike-location h5 {
  margin: 0 0 10px 0;
  color: #2c3e50;
}

.location-result {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
}
.location-result.location-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.location-result.location-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.bike-map {
  border: 1px solid #e9ecef;
  border-radius: 4px;
}
.bike-map .map-placeholder {
  padding: 20px;
  text-align: center;
  color: #666;
}

/* Return Information */
.return-info .return-summary {
  margin-bottom: 20px;
}
.return-info .return-summary p {
  margin: 8px 0;
  font-size: 14px;
}

.condition-checks {
  margin-bottom: 20px;
}
.condition-checks ul {
  list-style: none;
  padding: 0;
}
.condition-checks ul li {
  padding: 5px 0;
  font-size: 14px;
}

.issues-reported {
  margin-bottom: 20px;
}
.issues-reported ul {
  list-style-type: disc;
  padding-left: 20px;
}
.issues-reported ul li {
  margin: 5px 0;
  font-size: 14px;
}

.return-photos .photo-gallery {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
.return-photos .photo-item {
  text-align: center;
}
.return-photos .photo-item .return-photo {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e9ecef;
}
.return-photos .photo-item p {
  margin: 5px 0 0 0;
  font-size: 12px;
  color: #666;
}

/* Lockout Controls */
.lockout-controls {
  margin-top: 20px;
}
.lockout-controls h5 {
  margin: 0 0 10px 0;
  color: #2c3e50;
}
.lockout-controls .lockout-status {
  background: #f8d7da;
  color: #721c24;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.lockout-controls .lockout-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#lockout-form {
  margin-top: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 4px;
}
#lockout-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  resize: vertical;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
}
.btn.btn-primary {
  background: #3498db;
  color: white;
}
.btn.btn-primary:hover {
  background: #2980b9;
}
.btn.btn-secondary {
  background: #6c757d;
  color: white;
}
.btn.btn-secondary:hover {
  background: #5a6268;
}
.btn.btn-success {
  background: #28a745;
  color: white;
}
.btn.btn-success:hover {
  background: #218838;
}
.btn.btn-warning {
  background: #ffc107;
  color: #212529;
}
.btn.btn-warning:hover {
  background: #e0a800;
}
.btn.btn-danger {
  background: #dc3545;
  color: white;
}
.btn.btn-danger:hover {
  background: #c82333;
}
.btn.btn-link {
  background: none;
  color: #3498db;
  padding: 4px 8px;
}
.btn.btn-link:hover {
  color: #2980b9;
  text-decoration: underline;
}
.btn.btn-small {
  padding: 6px 12px;
  font-size: 12px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .b4c-dashboard-container {
    padding: 10px;
  }
  .filter-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .filter-group {
    min-width: 100%;
  }
  .dashboard-stats {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .orders-table {
    font-size: 12px;
  }
  .orders-table th, .orders-table td {
    padding: 8px 6px;
  }
  .customer-info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .rental-info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .control-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pagination-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .modal {
    padding: 10px;
  }
  .modal-content {
    max-height: 95vh;
  }
}
.b4c-action-container {
  position: relative;
  margin: 20px 0;
  padding: 10px;
}

.b4c-message-container {
  margin-bottom: 15px;
}

.b4c-message {
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.b4c-message-info {
  background-color: #e3f2fd;
  color: #1976d2;
  border: 1px solid #bbdefb;
}

.b4c-message-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.b4c-message-error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.b4c-ride-action-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.b4c-ride-info {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.b4c-ride-status {
  margin-bottom: 20px;
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9em;
  margin-left: 8px;
}

.status-not-started {
  background-color: #e3f2fd;
  color: #1976d2;
}

.status-started {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-returned {
  background-color: #f5f5f5;
  color: #616161;
}

.b4c-ride-times {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

.b4c-time-slot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.time-note {
  color: #666;
  font-size: 0.9em;
  font-style: italic;
}

.b4c-duration {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.b4c-ride-info strong {
  color: #333;
  min-width: 120px;
  display: inline-block;
}

.b4c-ride-status-select {
  margin-left: 10px;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.b4c-ride-status-select:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.b4c-ride-status-select:focus {
  outline: none;
  border-color: #2271b1;
  -webkit-box-shadow: 0 0 0 1px #2271b1;
          box-shadow: 0 0 0 1px #2271b1;
}

.b4c-status-update-msg {
  margin-left: 10px;
  display: inline-block;
}
.b4c-status-update-msg .b4c-message {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
}
.b4c-status-update-msg .b4c-message.b4c-message-info {
  background-color: #f0f6fc;
  color: #1a73e8;
}
.b4c-status-update-msg .b4c-message.b4c-message-success {
  background-color: #f0f7f0;
  color: #1e8e3e;
}
.b4c-status-update-msg .b4c-message.b4c-message-error {
  background-color: #fce8e6;
  color: #d93025;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}
.badge.ride-not_started {
  background-color: #f1f3f4;
  color: #5f6368;
}
.badge.ride-started {
  background-color: #e8f0fe;
  color: #1967d2;
}
.badge.ride-returned {
  background-color: #e6f4ea;
  color: #1e8e3e;
}

/* Simple Edit Forms */
.edit-button {
  background: none;
  border: none;
  color: #0073aa;
  cursor: pointer;
  padding: 0 5px;
}

.edit-form {
  margin: 5px 0;
  padding: 5px;
}

.edit-input {
  margin-right: 5px;
}

.save-button, .cancel-button {
  padding: 3px 8px;
  margin-right: 5px;
  cursor: pointer;
}

/* Vehicle Selection Modal Styles */
.b4c-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.b4c-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.b4c-modal-close {
  position: absolute;
  right: 10px;
  top: 5px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.b4c-modal-close:hover {
  color: #000;
}

.b4c-modal-body {
  margin-top: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

#b4c-vehicle-loading {
  text-align: center;
  padding: 20px;
}

#b4c-vehicle-error {
  margin: 10px 0;
}

#b4c-vehicle-list table {
  width: 100%;
  border-collapse: collapse;
}

#b4c-vehicle-list th,
#b4c-vehicle-list td {
  padding: 8px;
  text-align: left;
}

#ovabrw_id_vehicle {
  cursor: pointer;
  background-color: #fff;
}