
    body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    }
    .container {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    }
	.copied {
    color: red; /* Change 'red' to your desired color */
    }
	.hidden-element {
    display: none;
    }
    h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
    #gameSelect {
    font-size: 24px;
    padding: 5px 10px;
    margin: 0 10px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #007bff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    -webkit-text-fill-color: #007bff;
    text-fill-color: #007bff;
    }
    #gameSelect:hover, #gameSelect:focus {
    background-color: #e0e0e0;
    outline: none;
    }
    #gameSelect option[value="auto"] {
    color: green;
    }
    button {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    }
    button:hover {
    background-color: #0056b3;
    }
    button:disabled {
    background-color: #cccc;
    cursor: default;
    }
    #finalOutput, #intermediateOutput {
    white-space: pre-wrap;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: left;
    word-break: break-all;
    }
    .credits {
    margin-top: 20px;
    color: #777;
    }
    #copyButton {
    display: none;
    margin: 15px auto;
    }
    #popupMessage {
    display: none;
    position: absolute;
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    }
    @media (max-width: 480px) {
    .container {
    width: 95%;
    padding: 15px;
    }
    button {
    font-size: 14px;
    }
    h1 {
    font-size: 24px;
    }
    #gameSelect {
    font-size: 20px;
    margin: 5px 0;
    }
    #autoOptions select {
    font-size: 18px;
    padding: 10px;
    margin-bottom: 20px;
    }
    }
    #telegramStyleOption {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    }
    .wait-message {
    text-align: left;
    margin-bottom: 10px;
    }
    #sameClientCheckbox {
    display: inline-block;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    cursor: pointer;
    }
    #sameClientCheckbox input[type="checkbox"] {
    margin-right: 5px;
    }
@media (max-width: 480px) {
  .generate-button {
    height: 60px; /* Set a fixed height for the generate button */
  }
}
