.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wheel-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.arrow {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: rotate(270deg);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid red; /* Săgeata roșie */
    z-index: 10;
}
@media screen and (max-width: 768px) {
    .wheel-wrapper {
        width: 300px;
        height: 300px;
    }

    #wheelCanvas {
        width: 300px;
        height: 300px;
    }

    .arrow {
        right: -5px; /* Ajustare pentru săgeată */
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 15px solid red; /* Săgeata mai mică */
    }
}


#spinButton, .btn-base-color {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #c7a17a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#spinButton:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

.hidden {
    display: none;
}

#resultMessage {
    font-size: 18px;
    color: #555;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 20px;
}

.card {
    background-color: #f9f6ef;
    border-radius: 5px;
    padding: 20px;
}

.card-sucess {
    background-color: #f9f6ef;
    border-color: #c3e6cb;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.bg-christmas {
    background-image: url('/img/christmas.jpg');
    background-size: cover;
}