.spinner-column {
    transition: all 0.5s ease;
}

.spinner-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    cursor: pointer;
}

#wheel-canvas {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 35px solid #ec0088;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    z-index: 10;
}

.controls-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .sticky-desktop {
        position: sticky;
        top: 70px;
    }
}

.action-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    gap: 8px;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.form-row .form-control {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 8px;
}

.btn-pink {
    background-color: #ec0088;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-pink:hover {
    background-color: #d10078;
    color: white;
}

.btn-outline-pink {
    color: #ec0088;
    border: 1.5px solid #ec0088;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline-pink:hover {
    background-color: #ec0088;
    color: white;
}

.btn-modal-blue {
    background: #4a86e8;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 24px;
    font-weight: 600;
}

.btn-modal-close {
    background: transparent;
    color: #333;
    border: none;
    padding: 8px 18px;
    font-weight: 500;
}