/* Terminal header and controls styling */
.terminal-header {
    user-select: none;
    -webkit-user-select: none;
}

.terminal-control {
    background: none;
    border: 1px solid #00ff00;
    color: #00ff00;
    margin-left: 5px;
    width: 25px;
    height: 25px;
    line-height: 20px;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    text-align: center;
}

.terminal-control:hover {
    background-color: rgba(0, 255, 0, 0.2);
}

.terminal {
    box-sizing: border-box;
    min-width: 300px;
    min-height: 200px;
}

/* Hide scrollbars in all elements */
.terminal, #output {
    -ms-overflow-style: none;  /* Hide scrollbar in IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar in Firefox */
}

.terminal::-webkit-scrollbar, #output::-webkit-scrollbar {
    width: 0;
    background: transparent; /* Hide completely */
    display: none;
}