.spinner-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    margin-top: 30px;
}

#spinnerWheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 12px solid #198754;
    background: radial-gradient(circle, #ffffff 30%, #e3f2fd 100%);
    border-color: #42a5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 4.5s cubic-bezier(.17,.67,.14,1);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

#spinnerText {
    font-size: 26px;
    font-weight: bold;
    color: #0d47a1;
    text-align: center;
    padding: 20px;
}

.pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid #dc3545;
}
