.blurry-box {
    background: rgba(255, 255, 255, 0.3); /* semi-transparent white */
    backdrop-filter: blur(10px);          /* the blur effect */
    -webkit-backdrop-filter: blur(10px);  /* for Safari support */
    border-radius: 10px;
    padding: 20px;
    color: #000;
}

.bg-gradient-primary {
    background-color: #4e73df;
    /*background-image: linear-gradient(180deg, #284a59 10%, #39e5e6 100%);*/
    background-image: linear-gradient(180deg, #1c6494 10%, #76b9d6 100%);
    background-size: cover;
}

.processing-bar {
    width: 100%;
    height: 10px;
    background: linear-gradient(
        270deg,
        #ff9800, /* darker orange */
        #ffc107, /* lighter orange */
        #ff9800
    );
    background-size: 300% 100%;
    animation: smoothProcessing 3s ease-in-out infinite;
    border-radius: 5px;
    margin-bottom: 20px;
}

@keyframes smoothProcessing {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.not-suitable {
    color: #ccc;
}
.seller_avatar {
    margin: 0 10px;
    max-height: 40px;
}
tr.processing_tournament {
    background-image: repeating-linear-gradient(
        45deg,
        #ffe6d9 0 20px,
        #ffffff 20px 40px
    );
    background-size: 56px 56px;
    animation: processing-stripes 1.5s linear infinite;
}

/* Stripe movement */
@keyframes processing-stripes {
    to {
        background-position: 56px 0;
    }
}
.bought {
    background-color: #e2fdd9;
}
.btn-xsm {
    width: 1.4rem;
    height: 1.4rem;
    font-size:0.6rem;
}
.tournament-results {
    background-color: #e2fdd9;
    text-align: right;
}
.canceled-tournament {
    text-align: right;
    background-color: #f0f0f0;
}
.negative-background {
    background-color: #ffcccc;
}
