body {
    background: #7084ff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .import-method-container {
    background: white;
    width: 320px;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
    text-align: center;
  }
  
  .header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 0;
  }
  
  .back-button {
    background: none;
    border: none;
    font-size: 18px;
    color: #007bff;
    cursor: pointer;
  }
  
  .header h2 {
    font-size: 18px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    color: #333;
  }
  
  .import-method-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
  }
  
  .method-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    background: #f8f9fc;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .method-item:hover {
    background: #e6e7ec;
  }
  
  .icon {
    font-size: 20px;
    color: #007bff;
  }
  
  .label {
    font-size: 16px;
    flex-grow: 1;
    text-align: left;
    padding-left: 12px;
  }
  
  .arrow {
    font-size: 18px;
    color: #888;
  }
  
  .footer {
    margin-top: 100px;
  }
  
  .more-button {
    background: none;
    border: none;
    color: #007bff;
    font-size: 14px;
    cursor: pointer;
  }