body {
    margin: 2%;
    padding: 0;
    font-family: monospace;
    background-color: #000;
    color: #0f0;
    min-width: 250px;
}

.terminal {
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #0f0;
    border-radius: 5px;
}

.header {
    display: flex;
    align-items: center;
    background-color: #333;
    color: #0f0;
    padding: 10px;
    border-bottom: 1px solid #0f0;
}

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

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

.header-button.red {
    background-color: #ff5f57;
}

.header-button.yellow {
    background-color: #ffbe00;
}

.header-button.green {
    background-color: #27c93f;
}

.header-title {
    flex: 1;
    text-align: center;
}

.output {
    margin-top: 1%;
    flex: 2;
    flex-direction: row;
    overflow-y: auto;
    color: white;
    /* border-bottom: 1px solid #0f0; */
    background-color: #000;

    margin-left: 20px; /* Indent output to align with the input field */
    
}

#command-area {
    display: flex;
    margin-left: 1rem;
    flex-direction: column;
    font-size: 120%;
}

.input-line {
    display: flex;
    align-items: center;
}


input {
    background: black;
    background-color: #000;
    border: none;
    flex: 1;
    outline: none;
    padding: 0;
    font-size: 1em;
    width: 100%;
    display: flex;
    color: #49aee6;
    font-weight: 500;
    /* align-items: left; */
}


.prompt {
    color: #fff;
    margin-right: 5px;
}

.line {
    display: flex;
    align-items: left;
    margin-top: 1.7rem;
}

#command-output {
    margin-top: 10px;
}

.container{
    margin-bottom: 2em;
}





.line {
    display: flex;
    flex-direction: column;
    font-family: monospace; /* Use a monospace font for terminal-like appearance */
}

.prompt {
    display: flex;
    align-items: left;
}

.prompt-text {
    display: flex;
    align-items: left;
}

.prompt-text div {
    display: inline-block;
}

.command-input {
    border: none;
    background: transparent;
    outline: none;
    font-family: monospace;
    color: #fff; /* Input text color */
    padding: 0; /* No padding needed */
    margin-left: 8px; /* Space between $ and the input field */
}

.prompt span {
    margin-right: 2px; /* Adjust spacing between prompt parts */
}


.prompt-line {
    display: flex;
    align-items: left;
}



.container {
    font-size: 1.2vw; /* Font size scales with the viewport width */
}

/* Optional: You can add media queries for more control */
@media (max-width: 1200px) {
    .container {
        font-size: 1.5vw; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 768px) {
    .container {
        font-size: 1.6vw; /* Further adjust for tablet-sized screens */
    }
}

@media (max-width: 480px) {
    .container {
        font-size: 1.7vw; /* Larger font size for mobile devices */
    }
}
