@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins',Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  header {
    background: #2448d9;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
  }
  
  header h1 {
    margin: 0;
    font-weight: 600;
  }
  
  section {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  section h2 {
    color: #3232d5;
    font-weight: 500;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
  }
  
  table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }
  
  table th {
    background: #3232d5;
    color: white;
  }

  footer {
    text-align: center;
    padding: 1rem;
    background: #080043;
    color: white;
  }

  footer a {
    color: #00fff2;
    text-decoration: underline;
  }

  img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .browser-icon {
    height: 60px; 
    max-width: 100%;
  }

  .browser-icons-container {
    display: flex;
    justify-content: center; 
    gap: 15px; 
    min-width: 100px;
    align-items: center; 
    flex-wrap: wrap; 
  }
  
  .browser-icons-container .browser-icon {
    height: 60px !important; 
  }

code {
    background-color: #f4f4f4;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
  }
  
  pre {
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
  }
  
  .note {
    background-color: #e7f3fe;
    border-left: 6px solid #2196F3;
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .note h3 {
    margin-top: 0;
    font-weight: 400;
  }

link {
    color: #2196F3;
    text-decoration: none;
  }
  
  link:hover {
    text-decoration: underline;
  }
  
  .warning {
    background-color: #fff3cd;
    border-left: 6px solid #ffeeba;
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .warning h3 {
    margin-top: 0;
    font-weight: 400;
  }
  
  @media (max-width: 600px) {
    section {
      padding: 1rem;
      margin: 0.5rem auto;
    }
  
    header, footer {
      padding: 0.5rem;
    }
  
    table th, table td {
      font-size: 14px;
      padding: 4px;
    }
  
    pre {
      font-size: 14px;
      padding: 0.5rem;
    }
  
    .browser-icon {
      height: 40px; 
    }
}

h3 {
  font-weight: 500;
}

strong {
  font-weight: 600;
}

/* Note Blocks */
.note {
  background-color: #e7f3fe;
  border-left: 6px solid #2196F3;
  padding: 1rem;
  margin: 1rem 0;
}

.note strong {
  margin-top: 0;
  font-weight: 600;
  font-size: large;
}

.warning {
  background-color: #fff3cd;
  border-left: 6px solid #ff9d00;
  padding: 1rem;
  margin: 1rem 0;
}
.warning strong {
  margin-top: 0;
  font-weight: 600;
  font-size: large;
}

/* Language */
#language-switcher {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px 10px;
  display: inline-block;
}

#language-switcher button {
  background: none;
  border: none;
  color: #007BFF;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  margin: 0 5px;
  font-weight: bold;
}

#language-switcher button:hover {
  text-decoration: underline;
}

#language-switcher button.active {
  color: #333;
  cursor: default;
  text-decoration: none;
}