.info_code_client {
    width: 100%;
    margin: 0px 0;
}

.info_code_client a {
    color: #fff;
    cursor: pointer;
}

.subtle-text {
    display: block;
    margin-left: 10px;
    font-size: 0.85em; /* Hacemos el texto un poco más pequeño */
    color: #777; /* Color gris para hacerlo sutil */
    margin-top: 5px; /* Espaciado superior para que se vea debajo */
}

#user_data {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espacio entre las filas */
    font-family: Arial, sans-serif;
}

.user-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info-label {
    font-weight: bold;
    margin-right: 10px; /* Espacio entre etiqueta y valor */
    width: 120px; /* Tamaño fijo para las etiquetas */
    text-align: right;
}

.user-info-value {
    flex-grow: 1; /* Hace que el valor ocupe el espacio disponible */
    font-style: italic;
    color: #FFFFFF;
    text-align: left;
}

.continue_participation {
    margin: 0 auto;
    border: none;
    border-radius: 9px;
    padding: 20px 40px;
    background-color: #ba2e30;
    color: #FFF;
    cursor: pointer;
    font-size: 16px;
    transition: all .3s ease-in-out;
    z-index: 99;
}

.continue_participation:hover {
    background-color: #851e20;
}


/**********************/
.popup-overlay {
    z-index: 50;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
}
.popup-content img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/*************************/
.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #ccc;
    border-top: 6px solid #c40c1b; /* Azul primario */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
