body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #000; /* Cyberpunk style background */
    color: #fff;
}

#app {
    text-align: center;
}

.screen {
    display: none;
    padding: 20px;
}

.screen.active {
    display: block;
}

.app-icon {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 50px;
}

.subtitle {
    font-size: 18px;
    color: #888;
    margin: 20px 20px;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

p {
    font-size: 24px;
}

input[type="text"] {
    width: 80%;
    padding: 10px;
    font-size: 18px;
    margin-top: 20px;
    color: #000; /* User input text is black */
}

button {
    padding: 15px 30px;
    font-size: 20px;
    margin-top: 20px;
    background-color: #222;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:disabled {
    background-color: #555;
    color: #aaa;
}

.progress-container {
    width: 300px;
    background-color: #333;
    height: 20px;
    margin: 30px auto 10px auto;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #ff00ff; /* Cyberpunk pink */
    transition: width 0.1s linear;
}

.collecting-text {
    font-size: 16px;
    color: #888;
}

#analysis-text {
    font-size: 18px;
    color: #888;
    margin-bottom: 20px;
}

#prediction-result {
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
}

#prediction-result.yes {
    color: #00ff00; /* Cyberpunk green */
}

#prediction-result.no {
    color: #ff0033; /* Cyberpunk red */
}

#result-graph {
    margin-top: 20px;
}

.explanation-text {
    font-size: 16px;
    color: #888;
    margin: 20px;
}

.outcome-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.outcome-buttons button {
    margin: 0 10px;
    padding: 15px 30px;
    font-size: 20px;
    background-color: #222;
    color: #fff;
    border: none;
    cursor: pointer;
}

.outcome-buttons button.selected {
    background-color: #ff00ff; /* Cyberpunk pink */
    color: #fff;
}

button#close-loop-button,
button#done-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

body, h1, h2, p, input, button {
    color: #fff;
}
