#edocman-document-page .document-description p,
#edocman-document-page .document-description a {
    font-size: 22px !important;
}

#edocman-document-page .document-description .description-title {
    font-size: 30px !important;
}

/* Corrigir duplicação e empilhamento dos botões em telemóvel */
@media (max-width: 768px) {
    /* Esconder o bloco mobile duplicado com bug de posição */
    #edocman-document-page .mobile-actions {
        display: none !important;
    }

    /* Forçar o bloco principal de ações a empilhar certinho */
    #edocman-document-page .desktop-actions,
    #edocman-document-page .document-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        position: static !important;
        gap: 8px !important;
        margin-top: 15px !important;
    }

    /* Botões a ocupar a largura total do contentor */
    #edocman-document-page .desktop-actions a,
    #edocman-document-page .desktop-actions button,
    #edocman-document-page .document-actions a,
    #edocman-document-page .document-actions button {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}