.big-badge-set,
.big-badge-rarity
{
   font-size:1rem;
    padding: 0.3rem;
}

.big-badge-set,
.big-badge-rarity{
    display: flex;
    align-items: center;      /* centra verticalmente */
    justify-content: center;  /* centra horizontalmente */
    text-align: center;       /* por si acaso */
    white-space: nowrap;      /* evita saltos innecesarios */
}

@media (min-width: 770px) and (max-width: 1164px) {
    .big-badge-set {
        font-size: 0.6rem;
    }
    .big-badge-rarity{
        font-size: 0.6rem;
    }
}

@media (max-width: 769px) {
    .big-badge-set {
        font-size: 1.4rem;
    }
    .big-badge-rarity{
        font-size: 1.4rem;
    }
}


@media (max-width: 480px) {
    .big-badge-set {
        font-size: 0.8rem;
    }
    .big-badge-rarity{
        font-size: 0.8rem;
    }
}


@media (min-width: 1500px) {
    .big-badge-set {
        font-size: 1rem;
    }
    .big-badge-rarity{
        font-size: 1rem;
    }
}

.tablec td, 
.tablec th {
    padding: 4px 6px !important;
    font-size: 0.85rem;
    vertical-align: middle;
}
.tablec th {
    color: white;
    background-color:#333;
}
.form-check-input:disabled {
    opacity: 1;
}

.addToWLButton {
    font-size: 2rem;                  /* make it larger */
    color: red;                      /* heart itself */
    text-shadow: 0 0 3px white, 0 0 5px white; /* white glow behind */
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}

.addToWLButton:hover {
    transform: scale(1.3);
    color: red; /* fills on hover */
}

.btn-details {
    display: inline-block;        /* makes it behave like a button */
    padding: 0.25rem 0.5rem;      /* small padding */
    background-color: #5810c5;    /* light gray */
    color: #fff;                  /* dark text */
    font-weight: 500;
    border: 1px solid #5810c5;       /* subtle border */
    border-radius: 4px;           /* rounded corners */
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-details:hover {
    background-color: #C52110;    /* darker on hover */
    color: #fff;
    transform: scale(1.05);
}

.btn-details a, .btn-details-sell a{
    color:#fff;
    text-decoration: none;
}

.btn-details-sell {
    display: inline-block;        /* makes it behave like a button */
    padding: 0.25rem 0.5rem;      /* small padding */
    background-color: #C52110;    /* light gray */
    color: #fff;                  /* dark text */
    font-weight: 500;
    border: 1px solid #C52110;       /* subtle border */
    border-radius: 4px;           /* rounded corners */
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-details-sell:hover {
    background-color: #5810c5;    /* darker on hover */
    color: #fff;
    transform: scale(1.05);
}