#setup-section,
#wheel-section,
#placements-section {
    max-width: 480px;
    margin: 0 0 30px 0;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#name-input {
    padding: 6px 8px;
    font-size: 16px;
    margin-right: 8px;
}

#name-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

#name-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

#name-list li span {
    font-size: 16px;
}

button {
    padding: 8px 14px;
    font-size: 15px;
    margin-top: 8px;
    margin-right: 8px;
    cursor: pointer;
    border: 1px solid #457b9d;
    border-radius: 6px;
    background: #457b9d;
    color: #fff;
}

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

#name-list button,
#result-area button {
    background: #e63946;
    border-color: #e63946;
}

#wheel-container {
    position: relative;
    width: 360px;
    max-width: 100%;
    margin: 16px auto;
}

#wheel-pointer {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 22px solid #222222;
    z-index: 2;
}

#wheel-canvas {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

#result-area {
    margin-top: 16px;
    padding: 12px;
    background: #f1faee;
    border-radius: 6px;
}

#round-winner-banner {
    margin-top: 16px;
    padding: 16px;
    background: #ffd166;
    border-radius: 6px;
    text-align: center;
}

#round-winner-text {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

#placements-list {
    padding-left: 24px;
}

#placements-list li {
    padding: 4px 0;
    font-size: 16px;
}
