/* General body styling for a pager-like theme */
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000; /* Black background for pager look */
    color: #00ff00; /* Glowing green text similar to old pager screens */
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1, p {
    color: #00ff00; /* Green text */
    text-shadow: 0px 0px 5px #00ff00; /* Glow effect */
}

#translator {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Modern input and button style */
input[type="text"] {
    width: 300px;
    padding: 10px;
    font-size: 20px;
    background-color: #222; /* Dark background for input */
    border: 2px solid #00ff00; /* Glowing green border */
    color: #00ff00; /* Glowing green text */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 0px 10px #00ff00; /* Glowing effect around input */
    margin-bottom: 20px;
}

input[type="text"]::placeholder {
    color: #00ff00; /* Placeholder in glowing green */
    opacity: 0.8;
}

/* Button style with pager theme */
button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #222; /* Dark background */
    color: #00ff00; /* Glowing green text */
    border: 2px solid #00ff00;
    border-radius: 10px;
    cursor: pointer;
    text-shadow: 0px 0px 5px #00ff00;
    box-shadow: 0px 0px 10px #00ff00;
    transition: all 0.3s ease;
}

/* Button hover effect */
button:hover {
    background-color: #00ff00; /* Green background on hover */
    color: #000; /* Black text on hover */
    box-shadow: 0px 0px 20px #00ff00; /* Intense glow on hover */
}

/* Result section styling */
#result {
    margin-top: 30px;
    font-size: 24px;
    color: #00ff00; /* Glowing green */
    text-shadow: 0px 0px 5px #00ff00; /* Glow effect for result */
    word-wrap: break-word; /* Allows breaking long codes */
}

/* Glowing horizontal line */
hr {
    border: 1px solid #00ff00;
    box-shadow: 0px 0px 5px #00ff00;
    margin: 20px 0;
}
