/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin-top: 35px;
    margin-bottom: 15px;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start; /* Align content to the top */
    align-items: flex-start; /* Align content to the top */
    padding: 1rem; /* Add padding to prevent content from touching the edges */
  }
  
  .container {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    margin: 0 auto; /* Center the container horizontally */
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 1.75rem;
    color: #698eff;
  }
  
  p {
    font-size: 1rem;
    color: #cfcfcfad;
    margin-bottom: 1.5rem;
  }
  
  .input-group {
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #91acff;
  }
  
  input {
    width: 98%;
    padding: 0.5rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #333;
    color: #ffffff;
    font-size: 1rem;
  }
  
  input:focus {
    outline: none;
    border-color: #698eff;
  }
  
  .output {
    margin-top: 1.5rem;
  }
  
  .results-section {
    margin-bottom: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
    color: #7f9eff;
    margin-bottom: 0.5rem;
  }
  
  span {
    color: #4b78ff;
    font-weight: bold;
  }
  
  /* Mobile Optimization */
  @media (max-width: 600px) {
    body {
      padding: 0.5rem; /* Reduce padding on smaller screens */
    }
  
    .container {
      padding: 1rem; /* Reduce container padding on smaller screens */
    }
  
    h1 {
      font-size: 1.5rem; /* Slightly smaller heading on mobile */
    }
  
    p {
      font-size: 0.9rem; /* Slightly smaller text on mobile */
    }
  
    input {
      font-size: 0.9rem; /* Slightly smaller input text on mobile */
    }
  
    h3 {
      font-size: 1.1rem; /* Slightly smaller section headings on mobile */
    }
  }