body {
    font-family: "Courier New", Courier, monospace;
    text-align: left;
    background-color: #131211; /* Mörk bakgrund */
    color: #00ff88; /* Grön text */
    padding: 20px;
    margin: 0;
}
h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    text-transform: uppercase;
}
p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.input-container {
    display: flex;
    align-items: center;
    font-size: 1.2em;
}
.prompt {
    display: inline-block;
    margin-right: 5px;
    color: #00ff88;
}
.prompt::after {
    content: "_";
    animation: blink 1s steps(2, start) infinite;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}
#searchBox {
    border: none;
    background-color: #131211;
    color: #00ff88;
    font-family: "Courier New", Courier, monospace;
    font-size: 1.2em;
    width: 80%;
    outline: none;
}
#result {
    margin-top: 20px;
    padding: 10px;
    background-color: #131211;
    color: #00ff88;
    border: none;
    font-size: 1.2em;
    white-space: pre-wrap;
}
#progress-bar {
    display: none; /* Göm tills sökning startar */
    margin-top: 20px;
    width: 100%;
    height: 10px;
    background-color: #333;
}
#progress {
    width: 0%;
    height: 100%;
    background-color: #00ff88;
}
#log {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #00ff88;
    max-height: 150px;
    overflow-y: auto;
}
#log p {
    margin: 5px 0;
    color: #ffffff;
}
