/* Base styles for the service content sections */
.service-content {
  padding: 20px;
  background-color: #f9f9f9;
  height: 100%;
  overflow-y: auto;
  direction: rtl;
}

/* Section titles */
.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 20px 0 15px;
  text-align: right;
}

/* Location inputs styling */
.location-inputs {
  margin-bottom: 25px;
}

.input-group {
  margin-bottom: 12px;
  position: relative;
}

.location-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background-color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-align: right;
}

.location-input:focus {
  border-color: #fe0000;
  box-shadow: 0 0 0 2px rgba(254, 0, 0, 0.1);
  outline: none;
}

/* Vehicle options styling */
.vehicle-options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.vehicle-option {
  flex: 1 0 calc(25% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(25% - 10px);
}

.vehicle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.vehicle-icon.active {
  background-color: #fe0000;
  box-shadow: 0 4px 6px rgba(254, 0, 0, 0.3);
}

.vehicle-icon.active i {
  color: white !important;
}

.vehicle-name {
  font-size: 12px;
  color: #555;
  text-align: center;
  font-weight: 500;
}

/* Fare estimate styling */
.fare-estimate {
  background-color: white;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fare-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #666;
}

.fare-total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Request button styling */
.request-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: #fe0000;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(254, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.request-button:hover {
  background: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(254, 0, 0, 0.25);
}

.request-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(254, 0, 0, 0.2);
}

/* Package types styling for shipping tab */
.package-types {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.package-type {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.package-type.active {
  border-color: #fe0000;
  box-shadow: 0 2px 6px rgba(254, 0, 0, 0.15);
}

.package-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.package-type.active .package-icon {
  background-color: rgba(254, 0, 0, 0.1);
}

.package-details {
  flex: 1;
}

.package-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.package-description {
  font-size: 12px;
  color: #777;
}

/* Supermarket view styling */
.super-supermarket-view {
  padding: 20px;
  height: 100%;
}

.super-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.super-supermarket-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

/* Media queries for better responsiveness */
@media (max-width: 480px) {
  .vehicle-options {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .vehicle-options::-webkit-scrollbar {
    display: none;
  }

  .vehicle-option {
    flex: 0 0 80px;
    max-width: 80px;
  }

  .service-content {
    padding: 15px;
  }

  .location-input {
    padding: 12px 14px;
    font-size: 13px;
  }

  .package-type {
    padding: 10px;
  }

  .package-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }

  .request-button {
    padding: 14px;
    font-size: 15px;
  }

  .section-title {
    font-size: 16px;
    margin: 16px 0 12px;
  }

  .super-supermarket-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
}

/* Animation effects */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-content {
  animation: fadeIn 0.3s ease-out;
}

/* RTL specific adjustments */
.package-icon {
  margin-right: 0;
  margin-left: 15px;
}

@media (max-width: 480px) {
  .package-icon {
    margin-left: 12px;
  }
}

.phone-input-group {
  position: relative;
}

.verification-code-input {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  direction: ltr;
}

.verification-code-input input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 4px;
}

.verification-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.verification-buttons button {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.verify-btn {
  background-color: #fe0000;
  color: white;
}

.resend-btn {
  background-color: #f0f0f0;
  color: #555;
}

.message-container {
  display: none;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 14px;
  text-align: center;
}

.message-container.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.message-container.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.message-container.info {
  background-color: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

.verification-step {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.loading-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.recipient-info,
.sender-info {
  margin-bottom: 20px;
}

#package-details {
  resize: none;
  min-height: 60px;
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
  .verification-code-input input {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .verification-buttons button {
    padding: 8px 12px;
    font-size: 13px;
  }
}
#shipping-content .locations-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

#shipping-content .locations-list-item {
  display: block;
  width: 100%;
  padding: 12px 15px;
  text-align: right;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#shipping-content .locations-list-item:hover {
  background-color: #f0f7ff;
}

#shipping-content .locations-list-item:active {
  background-color: #e1f0ff;
}

#shipping-content .locations-list-item:last-child {
  border-bottom: none;
} /* Improved Shipping Styles */

/* Two-column layout for sender and recipient info */
.shipping-info-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.shipping-info-column {
  flex: 1;
  min-width: 0; /* Prevent flex items from overflowing */
}

/* Location input with autocomplete - More specific selectors */
#shipping-content .location-group {
  position: relative;
  margin-bottom: 20px;
}

#shipping-content .location-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
  font-size: 14px;
}

#shipping-content .location-input-wrapper {
  position: relative;
  width: 100%;
}

#shipping-content .location-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 16px;
}

#shipping-content .location-input {
  padding-left: 40px;
  padding-right: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#shipping-content .location-input:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

#shipping-content .location-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: #ddd #fff;
  width: 100%; /* Ensure full width */
}

#shipping-content .location-dropdown::-webkit-scrollbar {
  width: 8px;
}

#shipping-content .location-dropdown::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 0 0 8px 0;
}

#shipping-content .location-dropdown::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 4px;
}

#shipping-content .dropdown-header {
  padding: 10px 15px;
  background-color: #f5f5f5;
  color: #666;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
}

#shipping-content .dropdown-item {
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: right;
  font-size: 14px;
  display: block; /* Force vertical stacking */
  width: 100%; /* Full width */
}

#shipping-content .dropdown-item:hover {
  background-color: #f0f7ff;
}

#shipping-content .dropdown-item:active {
  background-color: #e1f0ff;
}

#shipping-content .dropdown-item:last-child {
  border-bottom: none;
}

#shipping-content .dropdown-item.no-results {
  color: #888;
  font-style: italic;
  text-align: center;
  padding: 15px;
}

/* Phone verification - Fix the green badge position */
#shipping-content .phone-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

#shipping-content .phone-input-group input {
  width: 100%;
  padding-left: 30px; /* Make room for the verification badge on the left */
  padding-right: 15px;
}

#shipping-content .verification-badge {
  position: absolute;
  left: 0px; /* Position on the left instead of right */
  top: 50%;
  transform: translateY(-50%);
  background-color: #4caf50;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  display: none;
  align-items: center;
  gap: 5px;
  z-index: 5; /* Ensure it's above the input */
  max-width: 80px; /* Limit width */
}

#shipping-content .verification-area {
  margin-top: 8px;
  display: none;
}

#shipping-content .verification-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#shipping-content .verification-code-input {
  display: flex;
  gap: 8px;
  justify-content: center;
}

#shipping-content .code-digit {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 18px;
}

#shipping-content .verification-buttons {
  display: flex;
  gap: 10px;
}

#shipping-content .verify-btn {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}

#shipping-content .verify-btn:hover {
  background-color: #3d8b40;
}

#shipping-content .verify-btn:disabled {
  background-color: #9e9e9e;
  cursor: not-allowed;
}

#shipping-content .resend-btn {
  background-color: transparent;
  color: #2196f3;
  border: 1px solid #2196f3;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

#shipping-content .resend-btn:hover:not(:disabled) {
  background-color: #e3f2fd;
}

#shipping-content .resend-btn:disabled {
  color: #9e9e9e;
  border-color: #9e9e9e;
  cursor: not-allowed;
}

#shipping-content .message-container {
  padding: 10px 15px;
  border-radius: 8px;
  margin: 15px 0;
  display: none;
}

#shipping-content .message-container.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #4caf50;
}

#shipping-content .message-container.error {
  background-color: #fdecea;
  color: #c62828;
  border-left: 4px solid #f44336;
}

#shipping-content .message-container.info {
  background-color: #e3f2fd;
  color: #0d47a1;
  border-left: 4px solid #2196f3;
}

/* Loading spinner */
#shipping-content .loading-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Fare estimate */
#shipping-content .fare-estimate {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

#shipping-content .fare-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

#shipping-content .fare-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  font-weight: bold;
  font-size: 18px;
}

/* Request button */
#shipping-content .request-button {
  width: 100%;
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#shipping-content .request-button:hover {
  background-color: #e64a19;
}

#shipping-content .request-button:disabled {
  background-color: #9e9e9e;
  cursor: not-allowed;
}

/* Taxi Service Styles - Scoped to avoid affecting other elements */

/* User Information Section */
#taxi-content .info-container {
  background-color: #f7f9fe;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

#taxi-content .section-title {
  color: #333;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
  padding-right: 14px;
}

#taxi-content .section-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background-color: #007bff;
  border-radius: 2px;
}

#taxi-content .form-row {
  margin-bottom: 18px;
}

#taxi-content .input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

#taxi-content .input-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
  font-size: 15px;
}

#taxi-content .input-group input,
#taxi-content .input-group textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #fff;
}

#taxi-content .input-group input:focus,
#taxi-content .input-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  outline: none;
}

#taxi-content .input-group textarea {
  min-height: 80px;
  resize: vertical;
}

/* Phone Verification */
#taxi-content .phone-group {
  position: relative;
}

#taxi-content .phone-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

#taxi-content .verification-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

#taxi-content .verification-area {
  margin-top: 10px;
}

#taxi-content .verify-btn {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

#taxi-content .verify-btn:hover {
  background-color: #0069d9;
  transform: translateY(-1px);
}

#taxi-content .verify-btn:active {
  transform: translateY(1px);
}

#taxi-content .resend-btn {
  background-color: transparent;
  color: #007bff;
  border: 1px solid #007bff;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 8px;
  transition: background-color 0.2s, color 0.2s;
}

#taxi-content .resend-btn:hover {
  background-color: rgba(0, 123, 255, 0.1);
}

#taxi-content .verification-code-input {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  justify-content: center;
}

#taxi-content .code-digit {
  width: 45px;
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

#taxi-content .code-digit:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  outline: none;
}

#taxi-content .verification-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Location inputs section */
#taxi-content .location-inputs {
  margin-bottom: 24px;
  position: relative;
  padding-right: 30px;
}

#taxi-content .location-inputs .input-group {
  position: relative;
  margin-bottom: 30px;
}

#taxi-content .section-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

/* Line connecting the pickup and destination points */
#taxi-content .location-inputs::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 13px;
  width: 2px;
  height: calc(100% - 60px);
  background: linear-gradient(to bottom, #1976d2 30%, #ff5722 70%);
  z-index: 0;
}

/* Circular dots for pickup and destination */
#taxi-content .location-inputs .input-group::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  font-size: 12px;
}

/* Pickup icon styling (blue) */
#taxi-content .location-inputs .input-group:first-child::before {
  content: "\f3c5"; /* Map marker icon */
  background-color: #1976d2;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #1976d2;
}

/* Destination icon styling (orange) */
#taxi-content .location-inputs .input-group:last-child::before {
  content: "\f3c5"; /* Map marker icon */
  background-color: #ff5722;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #ff5722;
}

/* Styling the actual input fields */
#taxi-content .location-input {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
  outline: none;
  text-align: right;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#taxi-content .location-input:focus {
  border-color: #1976d2;
  box-shadow: 0 2px 5px rgba(25, 118, 210, 0.2);
}

/* Pickup container styling */
#taxi-content .location-inputs .input-group:first-child {
  border-right: 3px solid #1976d2;
  border-radius: 3px;
  padding-right: 10px;
}

/* Destination container styling */
#taxi-content .location-inputs .input-group:last-child {
  border-right: 3px solid #ff5722;
  border-radius: 3px;
  padding-right: 10px;
}

/* Dropdown for address autocomplete */
#taxi-content .address-dropdown {
  position: absolute;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background-color: white;
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

#taxi-content .dropdown-header {
  padding: 14px 16px;
  background-color: #f0f7ff;
  border-bottom: 1px solid rgba(0, 123, 255, 0.15);
  font-weight: 600;
  color: #333;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
}

#taxi-content .dropdown-header::before {
  content: "\f0b0"; /* Filter icon */
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  margin-left: 8px;
  color: #007bff;
}

#taxi-content .locations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#taxi-content .locations-list-item {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
  display: flex;
  align-items: center;
}

#taxi-content .locations-list-item::before {
  content: "\f3c5"; /* Map marker icon */
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  margin-left: 12px;
  color: #007bff;
  opacity: 0.7;
}

#taxi-content .locations-list-item:hover {
  background-color: #f0f7ff;
  padding-right: 24px;
  color: #007bff;
}

#taxi-content .locations-list-item:active {
  background-color: #e6f0ff;
  transform: translateY(1px);
}

#taxi-content .locations-list-item:last-child {
  border-bottom: none;
  border-radius: 0 0 10px 10px;
}

#taxi-content .no-results {
  color: #888;
  font-style: italic;
  cursor: default;
  text-align: center;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#taxi-content .no-results::before {
  content: "\f7a9"; /* Sad cry icon */
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  margin-left: 8px;
  font-size: 18px;
  color: #999;
}

/* Vehicle Selection Styling Enhancements */
#taxi-content .vehicle-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  justify-content: center;
}

#taxi-content .vehicle-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 14px);
  cursor: pointer;
  transition: transform 0.2s;
}

#taxi-content .vehicle-option:hover {
  transform: translateY(-2px);
}

#taxi-content .vehicle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

#taxi-content .vehicle-icon.active {
  background-color: #007bff;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

#taxi-content .vehicle-icon.active i {
  color: white !important;
}

#taxi-content .vehicle-name {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  color: #444;
}

/* Message Container */
#taxi-content .message-container {
  padding: 14px;
  border-radius: 8px;
  margin: 18px 0;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s;
}

#taxi-content .message-container.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#taxi-content .message-container.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#taxi-content .message-container.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Fare Estimate Enhancement */
#taxi-content .fare-estimate {
  background-color: #f8faff;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

#taxi-content .fare-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e6eaf0;
  color: #555;
}

#taxi-content .fare-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 4px;
  font-weight: 600;
  font-size: 18px;
  color: #222;
}

#taxi-content .fare-total span:last-child {
  color: #007bff;
  font-size: 20px;
}

/* Loading animation */
#taxi-content .loading-circle {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Request Button */
#taxi-content .request-button {
  width: 100%;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
}

#taxi-content .request-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
  transform: translateY(-100%);
  transition: transform 0.3s;
}

#taxi-content .request-button:hover {
  background-color: #0062cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.35);
}

#taxi-content .request-button:hover::before {
  transform: translateY(0);
}

#taxi-content .request-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

#taxi-content .request-button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #taxi-content .vehicle-option {
    width: calc(50% - 12px);
  }

  #taxi-content .vehicle-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  #taxi-content .verification-buttons {
    flex-direction: column;
    gap: 10px;
  }

  #taxi-content .resend-btn {
    margin-right: 0;
    width: 100%;
  }

  #taxi-content .verification-code-input {
    gap: 6px;
  }

  #taxi-content .code-digit {
    width: 40px;
    height: 50px;
  }
}
#taxi-user-phone {
  width: 100%;
}
.autocomplete-completion {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.locations-list-item {
  cursor: pointer;
  padding: 8px 12px;
  transition: background-color 0.2s ease;
}

.locations-list-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
