/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
  }
  
  /* Container Styles */
  .container, .warning {
    text-align: center;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 20px;
  }
  
  /* Logo Styles */
  .logo {
    margin-bottom: 20px;
  }
  
  .logo img {
    width: 60px;
    height: auto;
  }
  
  /* Typography */
  h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  /* Steps Section */
  .steps {
    text-align: left;
    margin: 20px 0;
  }
  
  .steps h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .steps ol {
    padding-left: 20px;
    color: #555;
  }
  
  .steps ol li {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .steps ol li strong {
    color: #333;
  }
  
  /* Button Styles */
  .button {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .button:hover {
    background-color: #3a78c2;
  }
  
  /* Hide Desktop or Mobile View by Default */
  #desktop-view, #mobile-view {
    display: none;
  }