body {
    background-color: rgb(209, 209, 209);
    font-family: 'Consolas', 'Courier New', Verdana, sans-serif;
    font-weight: 600;
    font-size: medium;
    color: white;
    width: 100%;
    min-width: 400px;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.progress-bar {
    top: 80px;
    width: 100%;
    height: 100vh;
    background-color: #1a9900;
    opacity: 70%;
    position: fixed;
    text-align: center;
    justify-content: center;
}

.progress-bar-progress {
    margin-top: 38vh;
}

.login-panel {
    top: 80px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    position: fixed;
    background-color: white;
    opacity: 80%;
}

.login-panel-content {
    margin-top: 30px;
    height: 320px;
    min-width: 370px;
    width: 50%;
    background-color: #1a9900;
    z-index: 10;
    border-radius: 5px;
}

.login-element {
    margin: 10px;
}

.login-input-username {
    margin: 10px;
    width: 50%;
    background-color: white;
    color: black;
    height: 30px;
    border-radius: 5px;
}

.login-input-password {
    margin: 10px;
    width: 50%;
    background-color: white;
    color: black;
    height: 30px;
    border-radius: 5px;
}

.login-input-submit {
    margin-top: 20px;
    margin-left: 10%;
    width: 80%;
    background-color: white;
    color: black;
    height: 60px;
    text-align: center;
    border-radius: 5px;
}

header {
    height: 80px;
    width: 100%;
    background-color: #1a9900;
    position: fixed;
    z-index: 10;
}

.header-icon {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 5px;
    left: 20px;
    border-radius: 15px;
}

.header-gh-icon {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 5px;
    right: 20px;
    border-radius: 15px;
}

.header-spacer {
    height: 90px;
}

.page {
    display: flex;
    justify-content: center;
}

.page-content {
    min-width: 370px;
    width: 61.8%;
    background-color: #636464a8;
    position: relative;
}

.console {
    min-height: 80vh;
    width: 100%;
    justify-content: center;
    margin: auto;
}

.console-line {
    margin-bottom: 5px;
    margin-right: 2%;
    width: 98%;
    display: flex;
    object-fit: cover;
}

.console-line-start {
    margin-left: 5px;
    color: rgb(255, 166, 32);
}

.console-line-content {
    margin-left: 5px;
    white-space: pre-wrap;
}

.console-line-input-start {
    margin-left: 5px;
    color: rgb(255, 166, 32);
    animation: blink 1s linear infinite;
}

input {
    all: unset;
}

textarea {
    all: unset;
}

.console-line-input {
    margin-left: 5px;
    width: 100%;
    white-space: normal;
    scroll-behavior: auto;
    scrollbar-color: rgb(255, 166, 32) rgb(160, 160, 160);
    box-sizing: border-box; /* Essential for correct sizing */
    color: rgb(255, 166, 32);
    font-size: medium;
    height: 70px;
}

button {
    all: unset;
}

.console-line-input-submit {
    border: dotted;
    border-radius: 5px;
    animation: blink 1s linear infinite;
    margin-right: 10px;
    margin-left: 10px;
    width: 80px;
    padding: 5px;
    text-align: center;
}

.ai-submit-button {
    border: dotted;
    border-radius: 5px;
    animation: blink 1s linear infinite;
    color: rgb(255, 166, 32);
    margin-top: 20px;
    margin-bottom: 5px;
    margin-left: 20%;
    margin-right: 21%;
    width: 59%;
    height: 70px;
    text-align: center;
}

.ai-submit-button:active {
    color: red;
}

.console-line-input-submit:active {
    color: red;
}

.hor-line {
    width: 100%;
    border-top: solid;
    border-width: 2px;
    color: black;
}

footer {
    background-color: #1a9900;
    width: 100%;
    height: 20vh;
    position: relative;
    z-index: 10;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
