/* Base styles for the blue screen look */
body {
    background-color: #0000AA; /* Classic MS-DOS blue */
    color: #AAAAAA; /* Light gray text for contrast */
    font-family: 'Coda Console', monospace;
    cursor: default; /* Keep the system cursor */
}


/* Simulates a subtle CRT flicker effect */
@keyframes flicker {
    0% { opacity: 0.99; }
    5% { opacity: 0.95; }
    10% { opacity: 1; }
    15% { opacity: 0.97; }
    20% { opacity: 1; }
    100% { opacity: 1; }
}

.flicker-text {
    animation: flicker 0.2s infinite;
}

/* Styling for the blinking cursor */
.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background-color: #AAAAAA;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

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

/* Custom scrollbar to match the theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0000AA;
}

::-webkit-scrollbar-thumb {
    background: #AAAAAA;
    border: 1px solid #0000AA;
}

/* Style the console input field to match the console style */
.console-input {
    caret-color: #AAAAAA;
    font-family: 'Coda Console', monospace; /* Ensure the correct font is used */
    cursor: text; /* Show a standard text cursor for typing */
    line-height: 1.5; /* Align input with text container's line height */
}

/* Style for the new boot-screen buttons */
.boot-button {
    font-family: 'Coda Console', monospace;
    background-color: #000088;
    color: #AAAAAA;
    border: 2px outset #AAAAAA;
    box-shadow: 2px 2px #000000;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.boot-button:hover {
    background-color: #0000AA;
    color: #FFFFFF;
}

.boot-button:active {
    box-shadow: none;
    transform: translate(2px, 2px);
}

