.box {
    margin: 10px 0 10px;
    background-color: #fff !important;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.08);
}

.roletas-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roleta-box {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   padding: 15px;
   background: linear-gradient(to right, #174202, #34a772); 
   border-radius: 10px;
   transform: scale(1);
   animation: pulse 2s infinite;
   cursor: pointer;
}

.roleta-box-column {
    display: flex;
    flex-direction: column;
    color: #fff; 
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}