body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: #f5f5f5; */
    background-color: #4f0b4f;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
    flex-wrap: wrap;
}

.wheel-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.controls {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

canvas {
    max-width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.names-list {
    margin-top: 20px;
    /* max-height: 300px;
      overflow-y: auto; */
    width: 100%;
}

.name-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8px;
    margin: 5px 0;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.remove-btn {
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0px 4px;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
}

.remove-btn:hover {
    background-color: #d32f2f;
}

textarea {
    width: 100%;
    height: 60px;
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.winner-display {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    min-height: 40px;
    color: #4CAF50;
}

h1 {
    color: #333;
    margin-bottom: 30px;
}

header {
    width: 100%;
    /* background-color:purple; */
    height: 160px;
    padding: 5px;
    margin-bottom: 20px;
}

header img {
    display: block;
    height: 100%;
    margin: 0 auto;
}