body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    text-align: center;
}

.wheel-container {
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	position: relative;
	min-height: 600px;
}

h1 {
    color: #c0392b;
}

canvas {
    border: 5px solid #2ecc71;
    border-radius: 50%;
    margin: 1em 0;
}

#arrow {
	position: absolute;
	right: 15px;
	top: 185px;
	z-index: 10;
}

#spinButton {
    background-color: #e74c3c;
    color: white;
    font-size: 1.2em;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#spinButton:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

#result {
    margin-top: 1em;
    font-size: 1.5em;
    font-weight: bold;
    color: #27ae60;
}

.hidden {
    display: none;
}
