@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 800px;
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1, h2 {
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-top: 0;
}

h2 {
    text-align: left;
    border-bottom: none;
    margin-bottom: 10px;
}

textarea {
    width: 100%;
    height: 150px;
    background-color: #2d2d2d;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
}

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

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

button {
    background-color: #007acc;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Roboto Mono', monospace;
    transition: background-color 0.3s ease;
    margin-top: 15px; /* Add margin to the copy button */
}

button:hover {
    background-color: #005f99;
}

#result-output {
    height: 150px;
    background-color: #252525;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}
