.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* Estilo del modal */
#association-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.heading-update-aso {
    margin-bottom: 20px;
    text-align: center;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.form-field input {
    width: 100% !important;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.button-delete {
    color: #a00 !important;
    border-color: #a00 !important;
}

.button-delete:hover {
    color: #a00 !important;
}

.button-update-aso {
    background-color: #000;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

.button-update-aso:hover {
    background-color: #2d2d2d;
    color: #fff;
}

.loader {
    border: 4px solid rgba(255, 255, 255, 0.3); /* Fondo */
    border-top: 4px solid #3498db; /* Color del círculo */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}