/* :root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color-scheme: light;
    background-color: #f5f5f5;
  }
  
  body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  } */
  
  .trip-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    width: 100%;
    max-width: 500px;
  }
  
  .driver-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .driver-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
  }
  
  .driver-img i {
    font-size: 24px;
    color: #6c757d;
  }
  
  .driver-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
  }
  
  .car-section {
    margin-bottom: 24px;
  }
  
  .car-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  
  .car-img i {
    font-size: 48px;
    color: #6c757d;
  }
  
  .car-img span {
    color: #6c757d;
    font-size: 1.1rem;
  }
  
  .route-section {
    border-left: 2px dashed #ddd;
    margin-left: 12px;
    padding-left: 20px;
    margin-bottom: 24px;
  }
  
  .location {
    margin-bottom: 16px;
    position: relative;
  }
  
  .location::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4CAF50;
    transform: translateY(-50%);
  }
  
  .location.destination::before {
    background: #B30000;
  }
  
  .location-title {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
  }
  
  .location-address {
    font-size: 1.1rem;
    margin: 4px 0;
  }
  
  .description {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .remarks-section {
    background: #fff3e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .remarks-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  .remarks-header i {
    color: #F9A640;
    font-size: 1.2rem;
  }
  
  .remarks-header h3 {
    margin: 0;
    color: #e65100;
    font-size: 1.1rem;
  }
  
  .remarks-text {
    margin: 0;
    color: #795548;
    font-size: 0.95rem;
  }
  
  .price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin-bottom: 24px;
  }
  
  .price-label {
    color: #666;
  }
  
  .price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2196F3;
  }
  
  .book-button {
    width: 100%;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 20px;
  }
  
  .book-button:hover {
    background: #1976D2;
  }
  
  .book-button:active {
    transform: scale(0.98);
  }
  
  .social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  
  .social-button:hover {
    opacity: 0.9;
  }
  
  .social-button i {
    margin-right: 8px;
  }
  
  .facebook {
    background: #1877F2;
  }
  
  .twitter {
    background: #1DA1F2;
  }
  
  .linkedin {
    background: #0A66C2;
  }
  
  .whatsapp {
    background: #25D366;
  }
  
  .telegram {
    background: #0088cc;
  }
  
  .copy-link {
    background: #6c757d;
  }