body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0e0e0e;
    color: white;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
}

h1 {
    font-size: 2em;
    color: white;
    text-align: center;
}

.red {
    color: red;
}

.input-section {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input[type="number"] {
    flex-grow: 1;
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    background: #1e1e1e;
    color: white;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: red;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 5px;
}

#predictionSection, #confidenceMeter {
    margin-top: 20px;
    padding: 10px;
    background-color: #1e1e1e;
    border-left: 5px solid red;
}