
#terminal-close:hover {
    color: red;
}

.terminal-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 90%;
    height: 400px;
    background: #000;
    color: #0f0;
    border: 1px solid #333;
    border-radius: 5px;
    display: none; 
    z-index: 2000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    font-family: monospace;
}

.terminal-modal.active {
    display: block;
}

.terminal-modal-header {
    background: #333;
    padding: 10px;
    cursor: move; 
    user-select: none;
    color: #fff;
}

.terminal-modal-body {
    padding: 10px;
    height: calc(100% - 40px);
    overflow-y: auto;
    background: #000;
}

.terminal-modal-body input {
    width: 100%;
    background: #000;
    color: #0f0;
    border: none;
    outline: none;
    padding: 5px;
}