/* Reset and basic styles */
body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #f4f4f4;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#container {
    width: 80%;
    max-width: 800px;
    border: 2px solid #000;
    background-color: #fff;
    padding: 20px;
    box-shadow: 5px 5px #aaa;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
}

textarea {
    width: 96%;
    height: 150px;
    border: 2px solid #000;
    margin-bottom: 15px;
    padding: 2%;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    background-color: #fdfdfd;
    resize: none;
}

textarea:focus {
    outline: none;
    border-color: #007acc;
}

#controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #000;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

button:hover {
    background-color: #007acc;
    color: #fff;
}

#bin {
    margin-top: 20px;
    font-size: 2rem;
    cursor: pointer;
}

#bin:hover {
    color: #ff0000;
    transform: rotate(-10deg);
    transition: transform 0.2s, color 0.2s;
}

footer {
    margin-top: 20px;
}

#light-switch {
    font-size: 1rem;
}

#light-switch label {
    margin-right: 10px;
}

#light-switch input[type="checkbox"] {
    transform: scale(1.5);
    cursor: pointer;
}
