.qme-selector-wrapper {
    padding-top: 10px;
}

.tabla-sitio {
    width: 100%;
    border-collapse: collapse;
    background-color: #212529;
}

.sitio-quiniela {
    padding: 8px !important;
    color: #fff !important;
    border-top: 1px solid #333;
    text-align: left;
    font-size: 13px;
}

.sitio-numero {
    padding: 0px !important;
    background: #fff;
    color: #FB0000;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #000;
    font-size: 13px;
}

.qme-grid-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: #212529;
}

.qme-item {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.qme-puesto {
    background: #333;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 11px;
    margin-right: 5px;
    flex-shrink: 0;
}

.qme-puesto.destacado {
    background: #FB0000;
}

.qme-valor {
    background: #fff;
    color: #333;
    flex-grow: 1;
    padding: 2px 10px;
    border-radius: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.qme-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #212529;
    z-index: 99;
    align-items: center;
    justify-content: center;
}

.qme-loader::after {
    content: "";
    border: 3px solid #f3f3f3;
    border-top: 3px solid #FB0000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: qme_spin 1s linear infinite;
}

@keyframes qme_spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.qme-turnos-nav {
    display: flex;
    flex-wrap: wrap;
    background: #333;
}

.qme-turnos-nav button {
    flex: 1;
    min-width: 20%;
    cursor: pointer;
    background: #495057;
    color: #fff;
    border: 1px solid #222;
    padding: 8px 5px;
    font-size: 10px;
    text-transform: uppercase;
    transition: 0.2s;
}

.qme-turnos-nav button.active {
    background: #FB0000;
    font-weight: bold;
}

.qme-custom-select {
    width: 100%;
    background: #333;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #444;
    cursor: pointer;
}

.drawoftheday {
    color: #fff;
    text-align: center;
    padding: 10px;
    background: #0044cc;
    border-bottom: 2px solid #0033aa;
}

@media (max-width: 600px) {
  .qme-main-wrapper {
    width: 100% !important;
  }
}
