body {
    font-family: sans-serif;
    background-color: #f4f7f9;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin: 0;
}

.container {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 600px;
    text-align: center;
}

#visitor-text {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 25px;
}

hr {
    border: none;
    border-top: 1px solid #ecf0f1;
    margin: 25px 0;
}

h2 {
    color: #34495e;
    margin-bottom: 15px;
}

.options-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover:not(:disabled) {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.results-container {
    margin-top: 20px;
    text-align: left;
}

.result-bar-container {
    margin-bottom: 12px;
}

.result-label {
    margin-bottom: 5px;
    font-weight: bold;
}

.result-bar {
    background-color: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
}

.result-bar-fill {
    background-color: #2ecc71;
    color: white;
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: 5px 0 0 5px;
    transition: width 0.5s ease-in-out;
    min-height: 20px;
    box-sizing: border-box;
}