html, body {
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.page-footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

#output {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    overflow: auto;
    max-height: 300px;
    white-space: pre-wrap;
}

code {
    font-family: "Courier New", monospace;
}

a {
    text-decoration: none;
    color: rgb(9, 107, 255);
    transition: color 0.3s ease;
}

a:hover {
    color: #e5ff00;
}
