body {
    background-color: #FFD966;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    background: #00b894;  /* Or try #2abc7a for a more accurate green */
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    padding: 16px 20px;
    min-width: 330px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Left-align content in container */
}
#inputText {
    background-color: #e84393;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 8px;
    outline: none;
    margin-top: 0;
}
#inputText::placeholder {
    color: white;
    opacity: 1;
    font-family: sans-serif;
    font-size: 9px;
    padding-bottom: 10px;
}
#output {
    color:white;
    margin: 0;
    font-size: 1rem;
    background: none;
    padding: 0;
    padding-left:0px;        /* Remove padding-right! */
}

