body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #000;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    max-width: 500px;
    width: 100%;
  }
  
  .app-title {
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  .map-container {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 20px;
  }
  
  .ride-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .ride-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 8px;
  }
  
  .price {
    font-size: 24px;
    font-weight: bold;
  }
  
  .badge {
    position: absolute;
    top: 0px;
    right: 12px;
    background-color: #2277ff;
    color: white;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(38, 34, 255, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(255, 87, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
  }
  
  .note, .star {
    font-size: 14px;
    color: #1900ff;
    margin: 6px 0;
  }

  .location {
    font-size: 14px;
    color: #000000;
    margin: 6px 0;
  }
  
  .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .accept, .decline {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    border: none;
    cursor: pointer;
  }
  
  .accept {
    background-color: #000;
    color: #fff;
  }
  
  .decline {
    background-color: #e53935;
    color: #fff;
  }

  .decline:disabled {
    background-color: #aaa;
    cursor: not-allowed;
  }
  
  .otp-section {
    margin-top: 20px;
  }
  
  .otp-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
  }
  
  .otp-section input {
    width: 437px;
    max-width: 100%;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #f0f0f0;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  }

  .ride-card-content {
    position: relative; /* Needed to position badge inside */
  }

  .ride-header-pill {
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
  }
  
  .ride-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .ride-subtext {
    font-size: 12px;
    color: #888;
    margin: 2px 0;
    text-align: center;
  }
  
  .divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0;
  }
  
  .ride-info {
    font-size: 14px;
    color: #222;
  }
  
  .info-row {
    display: flex;
    align-items: center;
    margin: 6px 0 4px;
  }
  
  .info-row .dot {
    height: 8px;
    width: 8px;
    background-color: #444;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
  }
  
  .info-row .dot.bold {
    background-color: #000;
  }
  
  .info-text {
    font-weight: 500;
  }
  
  .info-address {
    margin: 0 0 12px 16px;
    color: #666;
    font-size: 13px;
  }
  
  @media (max-width: 600px) {
    .container {
      padding: 10px;
    }
  
    .app-title {
      font-size: 20px;
      padding: 10px;
    }
  
    .map-container {
      height: 200px;
    }
  
    .ride-card {
      padding: 15px;
      border-radius: 12px;
    }
  
    .ride-header-pill {
      font-size: 12px;
      padding: 4px 10px;
    }
  
    .ride-price {
      font-size: 22px;
    }
  
    .ride-subtext {
      font-size: 10px;
    }
  
    .location, .note, .star, .info-address, .info-text {
      font-size: 12px;
    }
  
    .accept, .decline {
      font-size: 14px;
      padding: 8px;
    }
  }
  
  .on-hold-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    opacity: 0.8;
  }
  
  .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #ff5722; /* Uber orange spinner */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  #resumeButton[disabled] {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  .verified-icon {
    font-size: 48px;
    color: green;
    margin-bottom: 10px;
    animation: pop 0.4s ease-in-out;
  }
  
  @keyframes pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  .note.success {
    color: green;
    font-weight: bold;
    font-size: 16px;
  }
