body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #1a1a1a;
color: #ddd;
margin: 0;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
h1 {
text-align: center;
color: #4CAF50;
}
input,
textarea,
button {
padding: 12px;
margin: 5px;
border-radius: 6px;
border: 1px solid #444;
}
input[type="text"],
textarea {
background-color: #2a2a2a;
color: #ddd;
width: 100%;
box-sizing: border-box;
}
/* Uniform Button Styling */
button,
.donate-btn {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
font-weight: bold;
font-size: 14px;
padding: 12px 20px;
border-radius: 6px;
transition: all 0.2s ease;
}
button:hover,
.donate-btn:hover {
background-color: #45a049;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}
button:active,
.donate-btn:active {
transform: translateY(1px);
}
/* Donate Button Specifics */
.donate-btn {
display: inline-block;
text-decoration: none;
margin: 10px 0;
box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}
pre {
background-color: #2a2a2a;
padding: 20px;
border-radius: 8px;
overflow-x: auto;
white-space: pre-wrap;
font-family: monospace;
line-height: 1.5;
}
.output {
border: 1px solid #444;
padding: 25px;
background-color: #222;
border-radius: 10px;
}
.instructions {
background: #2a2a2a;
padding: 15px;
border-radius: 6px;
margin: 15px 0;
}

.console-box {
    width: 100%;
    max-width: 900px;
    margin: 1rem auto;
    padding: 0.75rem;

    background: #111;
    color: #00ff9d;
    font-family: monospace;
    font-size: 0.9rem;
    border-radius: 6px;

    min-height: 50px;

    display: flex;
    align-items: center;

    opacity: 1;
    transition: opacity 0.35s ease;
}

.console-title {
    color:white;
    font-weight:bold;
    margin-bottom:5px;
    border-bottom:1px solid #444;
    padding-bottom:5px;
}

#consoleOutput {
    max-height: 220px;
    overflow-y: auto;
    white-space: pre-wrap;
    display: block;
}