﻿canvas {
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
    border: 10px solid #fff;
}

.arrow {
    position: relative;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    color: #000000;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
    height: 10px;
}

.wheel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-container .btn-spinwheel {
    position: absolute;
    width: 80px;
    height: 80px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    button:hover {
        background: #2980b9;
    }

#result {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.wheel-prize {
    display: flex;
    position: absolute;
    left: 60px;
    text-align: center;
    align-items: center;
}

.wheel-reload {
    display: flex;
    position: absolute;
    right: 60px;
    text-align: center;
    align-items: center;
}

.modal-wheel {
    top: 15%;
    left: -8px;
}

.modal-wheel .modal-header{
    justify-content: center;
}
.modal-wheel .modal-dialog{
    margin: 3.75rem auto;
}
.modal-wheel .modal-content {
    position: relative;
    animation: led-border 1s infinite linear;
}

@keyframes led-border {
    0% {
        box-shadow: 0 0 20px 10px #ff0000, 0 0 40px 20px #ff0000;
    }

    25% {
        box-shadow: 0 0 20px 10px #ff7f00, 0 0 40px 20px #ff7f00;
    }

    50% {
        box-shadow: 0 0 20px 10px #ffff00, 0 0 40px 20px #ffff00;
    }

    75% {
        box-shadow: 0 0 20px 10px #00ff00, 0 0 40px 20px #00ff00;
    }

    100% {
        box-shadow: 0 0 20px 10px #ff0000, 0 0 40px 20px #ff0000;
    }
}



