body {
    font-family: sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: #555;
    text-align: center;
}

.input-group {
    display: flex;
    margin-bottom: 20px;
}

#username {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#getPrice {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

#getPrice:hover {
    background-color: #0056b3;
}

#stopPrice {
    padding: 10px 20px;
    border: none;
    background-color: #dc3545;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

#stopPrice:hover {
    background-color: #c82333;
}

.slider-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#price-percentile {
    flex-grow: 1;
    margin: 0 10px;
}

#status {
    margin-bottom: 20px;
    font-style: italic;
    color: #666;
}

#results table {
    width: 100%;
    border-collapse: collapse;
}

#results th, #results td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#results th {
    background-color: #f2f2f2;
}

.low-confidence {
    color: #888;
    font-style: italic;
}