/* Style for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  p {
    white-space: pre-wrap; /* allows wrapping but keeps intentional spacing */
    word-wrap: break-word; /* breaks long words if needed */
  }

  /* Container styling */
  .container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 90%;
    width: 100%;
    box-sizing: border-box;
  }

  /* Logo styling */
  .logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
  }

/* Input field styling */
input[type="text"] {
    font-size: 16px; /* 👈 Add this line */
    padding: 10px;
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  /* Button styling */
  button {
        touch-action: manipulation;
    font-size: 16px; /* 👈 Add this line too */
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    max-width: 150px;
  }

  button:hover {
    background-color: #45a049;
  }

  /* Message output styling */
  #messageOutput {
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
  }

  /* Responsive tweaks */
  @media (max-width: 480px) {
    .container {
      padding: 15px;
    }

    h1 {
      font-size: 22px;
    }

    #messageOutput {
        font-size: 18px;
        margin-top: 20px;
        font-weight: bold;
        word-wrap: break-word;        /* Allows breaking long words */
        overflow-wrap: break-word;    /* Modern, standard-compliant version */
        word-break: break-word;
    }
    p {
        font-size: 10px; /* or smaller if needed */
    }
  }
