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);
}