body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    position: relative;
    max-width: 100%;
    padding: 20px;
}

.info-message {
    margin-bottom: 20px;
}

.info-message p {
    font-size: 1.2em;
    color: #333;
}

.controls {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.options-container {
    margin-bottom: 10px;
}

.options-container label {
    margin: 0 10px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

.roulette-container {
    position: relative;
    width: 300px;
    height: 300px;
    border: 10px solid #000;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto; /* Merkezi hizalama */
}

.roulette-wheel {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(0deg); /* İlk başta çarkın sabit durması için */
}

.number {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: red;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    user-select: none; /* Tıklanabilirliği artırmak için */
}

.selected {
    background-color: yellow !important;
    color: black !important;
}

.center-text {
    position: absolute;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
    z-index: 10; /* Çarkın üzerinde görünmesi için */
}