    body { margin:0; font-family: Arial, sans-serif; font-size: 12px; background:#fafafa; }

    :root {
      --primary: #2563eb;
      --text: #111827;
      --muted: #6b7280;
      --bg: #f9fafb;
    }    

    .divider {
      height: 1px;
      background: #f1f5f9;
      margin: 8px 0;
    }    
    .controls {
      position: sticky; top:0; z-index:1000;
      background:#fff; padding:10px; box-shadow:0 2px 5px rgba(0,0,0,0.1);
    }

    label { font-size:12px; font-weight:bold; }

    input, select, textarea {
      width:95%; padding:8px; margin-bottom:6px;
      font-size:12px;
      border-radius: 8px;
      border: 1px solid #e5e7eb;      
    }

    .plan-btn {
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #fff;
      padding: 10px;
      border-radius: 10px;
      border: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.3px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(37,99,235,0.25);
      transition: all 0.15s ease;
    }

    .plan-btn:active {
      transform: scale(0.97);
      cursor: pointer;
    }

    .plan-btn:disabled {
      background-color: #d1d5db !important; /* Grey */
      color: #9ca3af !important;
      cursor: not-allowed;
    } 

    #map { height:40vh; width:100%; }

    #results { padding:10px; }
    
    .attractions {
      margin-top:5px;
      padding-top:8px;
      border-top:1px solid #eee;
      overflow: hidden;
      transition: max-height 0.3s ease;   
    }  
   
    
  .card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;

    box-shadow: 
      0 1px 3px rgba(0,0,0,0.06),
      0 4px 12px rgba(0,0,0,0.08);

    transition: transform 0.15s ease, box-shadow 0.15s ease;
  } 
    /* hover (desktop) */
    .card:hover {
      transform: translateY(-0.5px);
      box-shadow:0 4px 12px rgba(0,0,0,0.15);
    }
    
    /* active (mobile tap feedback) */
    .card:active {
      background-color: #f5f9ff;
      transform: translateY(1px);
      box-shadow:0 1px 2px rgba(0,0,0,0.06);      
    }    
    .section-title {
      font-size: 11px;
      color: #6b7280;
      margin-top: 8px;
      margin-bottom: 4px;
      text-transform: uppercase;
    }    
    .spinner {
      margin:auto;
      width:30px;
      height:30px;
      border:4px solid #ddd;
      border-top:4px solid #007bff;
      border-radius:50%;
      animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
      100% { transform: rotate(360deg); }
    }    
    h4 {
      color: blue;
      font-weight: bold;
    }
    .active-card {
      border: 2px solid #007bff;
    }  
    .action-bar {
      bottom: 0;
      background: #ffffff;
      padding: 10px;
      display: flex;
      gap: 8px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
      display: flex;
      justify-content: center; /* Centers horizontally */
      align-items: center;     /* Centers vertically */
    }   
    .copyright {
      background: #f0fcc8;
      padding: 3px;
      display: flex;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
      display: flex;
      justify-content: center; /* Centers horizontally */
      align-items: center;     /* Centers vertically */
    }     
    /* Warning Banner */
    .warning-box {
      display: none;
      position: sticky;
      top: 0;
      z-index: 2000;

      margin: 8px;
      padding: 12px 14px;

      border-radius: 10px;
      border: 1px solid #fde68a;

      background: linear-gradient(135deg, #fff7ed, #fffbeb);
      color: #92400e;

      font-size: 13px;
      line-height: 1.4;

      box-shadow: 0 4px 12px rgba(0,0,0,0.08);

      display: flex;
      align-items: center;
      justify-content: space-between;

      animation: slideDown 0.25s ease;
    }

    .warning-content {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .warning-icon {
      font-size: 16px;
    }

    .warning-close {
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      opacity: 0.6;
    }

    .warning-close:hover {
      opacity: 1;
    }

    @keyframes slideDown {
      from {
        transform: translateY(-10px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }  
  .input-box {
    width: 100%;
    margin: 2px 0;
  }

  gmp-place-autocomplete {
    width: 100%;
    display: block;
  }

  /* Try to normalize look */
  gmp-place-autocomplete::part(input) {
    width: 100%;
    padding: 8px;
    font-size: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
  }      
  .reset-btn {
  margin-left: 10px;
  background: #eee;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}