.anec-msg {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    }
    .anec-msg.success {
    background: #d1ecf1;
    color: #0c4b92;
    border: 1px solid #bee5eb;
    }
    .anec-msg.error {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
    }
    .anec-msg.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    }
    
    /* Estilos del formulario */
    #anec-form {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 0px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    }
    
    .form-image-img {
    max-width: 100%;
    margin-bottom: 15px;
    }
    
    label {
    font-weight: bold;
    }
    
    /* Estilos para los campos del formulario */
    input[type="text"],
    input[type="email"],
    input[type="file"],
    button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    }
    
    /* Estilos del botón */
    button {
    background-color: #0056b3 !important;
    color: white;
    cursor: pointer;
    border: none;
    }
    
    button:hover {
    background-color: #0c4b92 !important;
    }
    
    h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    }
    
    .download-link {
    color: #007bff;
    text-decoration: underline;
    }	
    
    /* Estilo de los botones "Agregar otro documento" */
    .add-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    }
    
    .add-btn:hover {
    background-color: #0056b3 !important;
    }