body {
    font-family: Arial, sans-serif;
    background-color: #2c3e50;
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

.roulette-container {
    text-align: center;
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('A_flat_image_of_a_roulette_wheel_similar_to_the_cl.png'); /* Add your roulette wheel image here */
    background-size: cover;
    transition: transform 4s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.controls {
    margin: 20px;
}

.controls input, .controls select, .controls button {
    padding: 10px;
    margin: 5px;
    font-size: 16px;
}

.table-container {
    width: 600px; /* Adjust the size as needed */
    height: 300px; /* Adjust the size as needed */
    margin: 20px auto;
    background-color: #34495e; /* Placeholder background */
    /* Add styles for your table graphic here */
}

.result {
    font-size: 20px;
    margin-top: 20px;
}
