body {
    background-color: #1e1e1e;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.console-container {
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 10px #000;
    
}

.console-header {
    background-color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.console-buttons {
    display: flex;
    gap: 5px;
}

.button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.close {
    background-color: #ff5f56;
}

.minimize {
    background-color: #ffbd2e;
}

.maximize {
    background-color: #27c93f;
}

.console-title {
    color: #ccc;
    font-size: 14px;
}

.console-body {
    background-color: #1e1e1e;
    border: 2px solid #333;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 20px;
    position: relative;
    
    max-height: 400px;
    min-height: 400px;
    /* Add max height */
    overflow-y: auto;
    /* Make scrollable */
    scroll-behavior: smooth;
    /* Smooth scrolling */
}

/* Custom scrollbar styles */
.console-body::-webkit-scrollbar {
    width: 10px;
}

.console-body::-webkit-scrollbar-track {
    background: #333;
    border-radius: 5px;
}

.console-body::-webkit-scrollbar-thumb {
    background-color: #1e1e1e;
    border-radius: 5px;
    border: 3px solid #333;
}

#console-content {
    white-space: pre-wrap;
    word-wrap: break-word;
}

#cursor {
    display: inline-block;
    background-color: #00ff00;
    width: 5px;
    height: 15px;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    from,
    to {
        background-color: #00ff00;
    }

    50% {
        background-color: transparent;
    }
}
