.rensr-table-header {
    background-color: #1e536e;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid white;
    color: white;
    font-weight: bold;
}

.rensr-text-center {
    text-align: center !important;
    justify-content: center;
    /* Opcional, centra también horizontalmente si es necesario */
}

.rensr-row-value {
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid white;
    background-color: white;
}

.rensr-row-value.pair {
    background-color: #eef4ff;
}

.tri-rensr-row-value {
    display: flex;
}

.rensr-users-table {
    margin-bottom: 30px;
}

.select-rensr {
    border-radius: 2px;
}


.rensr-row-value,
.rensr-table-header
{
    display: flex;
    align-items: center;
    /* Centrado vertical */
    padding: 10px;
    /* Mantén el espaciado */
    border: 1px solid white;
}

.rensr-row-value.pair {
    background-color: #eef4ff;
}

.mobile-display{
    display: none;
}

.tri-rensr-row-value {
    display: flex;
}

.rensr-users-table {
    margin-bottom: 30px;
}

.rensr-row-value i {
    font-size: 22px;
}

.rensr-row-value .btn {
    border-radius: 3px;
}

.info-content {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #1e536e;
    color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;
}

.info-content:hover {
    background-color: #225e7e;
}

.border-1-bottom {
    border-bottom: 1px solid #1e536e;
}

.b-1-all {
    border: 1px solid #1e536e;
    border-radius: 4px;
}

.modal-overlay-tri-multiuser {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content-tri-multiuser {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-actions-tri-multiuser {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.btn-tri-multiuser {
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.btn-danger-tri-multiuser {
    background-color: #dc3545;
    color: white;
}

.btn-secondary-tri-multiuser {
    background-color: #6c757d;
    color: white;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #1e536e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#message-box {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.custom-alert {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    animation: fadeIn 0.5s ease-in-out;
}

.success {
    background-color: #28a745;
}

.error {
    background-color: #dc3545;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {

    .mobile-none{
        display: none;
    }
    .mobile-display{
        display: block;
    }
    .tri-rensr-row-value {
        display: block;
        border-bottom: 2px solid #1e536e;
    }
    .rensr-text-center {
        text-align: left !important;
        justify-content: left;
    }
    .mobile-color-titulo{
        background-color: transparent;
        color: black;
    }
}