
/* Common Layout */
.wheel-wrapper {
    position: relative;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 100px rgb(41, 152, 255);
}

/* The fixed triangle pointer */
.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #ec1111;
    z-index: 10;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgb(250, 249, 249);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.2);
    z-index: 5;
    border: 4px solid #f3f4f6;
}

#rouletteCanvas {
    border-radius: 50%;
    border: 8px solid rgb(255, 255, 255);
    box-shadow: 0 10px 30px, rgb(255, 255, 255);
    transition: transform 0.1s;
}

/* Button Styles */
.spin-button {
    position: relative;
    padding: 1rem 3rem;
    background: white;
    color: #4e96fa;
    font-weight: 900;
    font-size: 1.25rem;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #55c4f8;
}

.spin-button:active {
    transform: translateY(1px);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Scrollbar for input list */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}
