body {
    background-color: #A1C9F2; /* Baby Blue */
    font-family: 'Monaco', monospace; /* Old terminal font */
    padding: 20px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin-right: 20px;
}

header nav a {
    color: #fff;
    text-decoration: none;
}

.terminal-box {
    width: 98%;
    max-width: 800px; /* Optional: max width for larger screens */
    margin: 0 auto;
    padding: 20px;
    background-color: #c0c0c0;
    border: 2px solid #000;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.terminal {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border: 2px inset #fff;
    border-radius: 5px;
    height: 400px;
    overflow-y: auto; /* Change to auto to allow scrolling */
    position: relative;
    font-family: 'Monaco', monospace;
}

.input-line {
    display: flex; 
    align-items: center;
    margin: 5px 0;
}

.prompt {
    color: #fff;
    margin-right: 5px;
    user-select: none; /* Prevent selecting the prompt */
}

.terminal-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Monaco', monospace;
    font-size: 16px;
    outline: none;
    width: calc(100% - 40px);
    padding: 0;
    margin: 0;
}

#terminal-output {
    max-height: 100%;
}

#terminal-output p {
    margin: 5px 0;
    white-space: pre-wrap; /* Preserve whitespace but allow wrapping */
}

.defrag-bar, .msav-bar {
    background-color: #008000;
    color: #fff;
    height: 20px;
    line-height: 20px;
    text-align: center;
    width: 0;
    transition: width 0.5s;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 2px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    clear: both;
}

.static-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/3Rth.gif') repeat; /* Static animation GIF */
    z-index: 1000;
    display: none;
}

.youtube-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    display: none;
}

/* Fix for disabled (readonly) inputs to maintain appearance */
.terminal-input:disabled {
    background: transparent;
    color: #fff;
    opacity: 1;
}
