body {
    background-color: white; 
}

.img-blur-border {
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}


.img-rounded {
    border-radius: 15px;
}


#lista-agremiados .list-group-item:hover {
    background-color: #e6f0ff !important;
    cursor: pointer;
}

#lista-agremiados .list-group-item:active {
    background-color: #cce0ff !important;
}

#lista-agremiados {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2000;
}

#lista-agremiados .list-group-item {
    font-weight: bold;
    font-size: 16px;
    padding: 10px 12px;
    transition: background-color 0.2s ease;
}

#lista-agremiados .list-group-item:hover {
    background-color: #f0f8ff !important; /* azulito */
}

table a:empty,
table a[href="#"] {
    display: none;
}


/* Alinear labels del formulario de signin */
form p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* centra horizontalmente */
}

form p label {
    width: 120px;        /* mismo ancho para alinear */
    text-align: right;   /* etiqueta alineada */
    margin-right: 10px;  /* espacio antes del input */
    font-weight: 600;
}