.terminal-text {
    margin-top: -1.5rem;  /* Move text up */
    font-size: 1rem;
    font-family: 'Arial'; /* Optional: increases font size */
    color: rgb(255, 255, 255);
}

.terminal-input {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prompt-text {
    color: white;
    font-size: 1rem;
    font-family: 'Arial';
}

#command-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Arial';
    padding: 0.3rem;
    flex-grow: 1;
    outline: none;
}

#command-input::placeholder {
    color: rgba(255, 253, 108, 0.5);
}

.command-link {
    color: #18f7ff;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial';
}

.command-link:hover {
    text-decoration: underline;
    color: #4eeaff;
}

.action-button {
    width: 100px;  /* Fixed width */
    height: 25px;  /* Fixed height */
    padding: 0;
    justify-content: center; /* Center content horizontally */
    background-color: rgba(4, 0, 211, 0.2);
    color: #ffffff;
    border-radius: 7px;
    cursor: pointer;
    position: relative;
    align-items: center;
    font-size: 1rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: all 0.3s ease;
}

.action-button:hover {
    background-color: rgba(255, 240, 124, 0.3);
    transform: translateY(-2px);
}

.action-button i {
    font-size: 0.9rem;
}
